我正在寻找一种方法来创建可扩展的销售订单项目,以便轻松添加新的业务规则。
public class OrderLine
{
public int OrderId { get; set; }
public int Line { get; set; }
public string Product { get; set; }
public string Description { get; set; }
public decimal Quantity { get; set; }
public int LeadTimeDays { get; set; }
public DateTime ShipDate { get; set; }
}
创建业务规则以检查订单行是否有效的最佳做法是什么?并且,是否有一种简单的方法来应用多个规则而不为每个规则添加检查方法?
public static class OrderLineChecks
{
public static void CheckLeadTime(this OrderLine orderLine)
{
if( (orderLine.ShipDate - DateTime.Today).TotalDays < orderLine.LeadTimeDays )
throw new Exception("Order is within lead time.");
}
public static void CheckShipDateError(this OrderLine orderLine)
{
if(orderLine.ShipDate < DateTime.Today)
throw new Exception("Ship date cannot be before today.");
}
public static void ShouldBeOrderedInPairs(this OrderLine orderLine)
{
if(orderLine.Description.Contains("pair") && (orderLine.Quantity % 2 !=0))
throw new Exception("Quantities must be even numbers.");
}
public static NextFutureRuleHere(...)
{
}
}
感谢您的建议。
答案 0 :(得分:1)
查看Fluent验证:http://fluentvalidation.codeplex.com/
遵循此框架实现规则的方式应该可以帮助您找出我认为您正在寻找的内容。
答案 1 :(得分:0)
根据您的要求,它可能过度,但您是否考虑使用Rhino DSL & Boo 编写DSL。如果您编写正确的代码,即使非程序员也非常容易expand / maintain set of business rules。