Exemplo n.º 1
0
 public string GetEmployeeName(Meal meal)
 {
     TipCalculationService.Meal = meal;
     return(TipCalculationService.GetTippedEmployee());
 }
Exemplo n.º 2
0
 public double GetTip(Meal meal)
 {
     return(TipCalculationService.CalculateTip(meal.Cost, .15));
 }