|
|
@@ -21,7 +21,7 @@ namespace Comal.Classes
|
|
|
public class DeliveryItemArea : IFormula<DeliveryItem, decimal>
|
|
|
{
|
|
|
public Expression<Func<DeliveryItem, decimal>> Value => x => x.Height;
|
|
|
- public Expression<Func<DeliveryItem, decimal>>[] Modifiers => new Expression<Func<DeliveryItem, decimal>>[] { x => x.Width };
|
|
|
+ public Expression<Func<DeliveryItem, decimal>>[] Modifiers => new Expression<Func<DeliveryItem, decimal>>[] { x => x.Width, x => 0.000001m };
|
|
|
public FormulaOperator Operator => FormulaOperator.Multiply;
|
|
|
public FormulaType Type => FormulaType.Virtual;
|
|
|
}
|