public static void CopyTo(this IHasPrice from, IHasPrice to, bool allowDefaultValues = true)
 {
     if (allowDefaultValues || from.Price != default(decimal))
     {
         to.Price = from.Price;
     }
 }
Example #2
0
 public string GetOrderCost(IHasPrice smthWithPrice)
 {
     return($"Order total = {smthWithPrice.Price}");
 }