public ServingPrice SecondServingPricing()
 {
     var secondServingPricing = new ServingPrice
     {
         ServicePriceId = (int)ServingPriceModel.Values.Fourteen_Dollars_NintyNine,
         ServingMeasurementId = (int)ServingMeasurementType.Values.BreadPlate6Inches,
         PLanId = (int)Plans.Types.FiveMealsPerWeek,
         Price = (decimal)(new ServingPriceModel().GetPrice(ServingPriceModel.Values.Fourteen_Dollars_NintyNine)),
         Quantity = 2
     };
     return secondServingPricing;
 }
 public ServingPrice ThirdServingPricing()
 {
     var thirdServingPricing = new ServingPrice
     {
         ServicePriceId = (int)ServingPriceModel.Values.Ninteen_Dollars_NintyNine,
         ServingMeasurementId = (int)ServingMeasurementType.Values.LunchPlate9Inches,
         PLanId = (int)Plans.Types.TenMealsPerWeek,
         Price = (decimal)(new ServingPriceModel().GetPrice(ServingPriceModel.Values.Nine_DollarsNintyNine)),
         Quantity = 1
     };
     return thirdServingPricing;
 }
 public ServingPrice FirstServingPricing()
 {
     var firstServingPricing = new ServingPrice
     {
         ServicePriceId = (int)ServingPriceModel.Values.Ninteen_Dollars_NintyNine,
         ServingMeasurementId = (int)ServingMeasurementType.Values.TwoCupContainer,
         PLanId = (int)Plans.Types.ThreeMealsPerWeek,
         Price = (decimal)(new ServingPriceModel().GetPrice(ServingPriceModel.Values.Ninteen_Dollars_NintyNine)),
         Quantity = 1
     };
     return firstServingPricing;
 }