private decimal CalculateFastDeliveryCost(DeliveryOptions deliveryOptions, decimal cost)
 {
     return(deliveryOptions.FastDelivery ? cost : 0);
 }