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