public CookerPlan FourthCookerPlan()
 {
     var cookerPlan = new CookerPlan
     {
         CookerPlanId = 4,
         CookerId = 2,
         PlanId = 1
     };
     return cookerPlan;
 }
 public CookerPlan SecondCookerPlan()
 {
     var secondCookerPlan = new CookerPlan
     {
         CookerPlanId = 2,
         CookerId = 1,
         PlanId = (int)Util.Plans.Types.FiveMealsPerWeek
     };
     return secondCookerPlan;
 }
 public CookerPlan FirstCookerPlan()
 {
     var firstCookerPlan = new CookerPlan
     {
         CookerPlanId = 1,
         CookerId = 1,
         PlanId = (int)Util.Plans.Types.ThreeMealsPerWeek
     };
     return firstCookerPlan;
 }
 public CookerPlan FifthCookerPlan()
 {
     var cookerPlan = new CookerPlan
     {
         CookerPlanId = 5,
         CookerId = 2,
         PlanId = 2
     };
     return cookerPlan;
 }
Example #5
0
 public CookerPlan SecondCookerPlan()
 {
     var secondCookerPlan = new CookerPlan
     {
         CookerPlanId = 2,
         CookerId = 1,
         PlanId = 2
     };
     return secondCookerPlan;
 }
Example #6
0
 public CookerPlan FirstCookerPlan()
 {
     var firstCookerPlan = new CookerPlan
     {
         CookerPlanId = 1,
         CookerId = 1,
         PlanId = 1
     };
     return firstCookerPlan;
 }
 public CookerPlan ThirdCookerPlan()
 {
     var thirdCookerPlan = new CookerPlan
     {
         CookerPlanId = 3,
         CookerId = 1,
         PlanId = (int)Util.Plans.Types.TenMealsPerWeek
     };
     return thirdCookerPlan;
 }
 public CookerPlan SixthCookerPlan()
 {
     var cookerPlan = new CookerPlan
     {
         CookerPlanId = 6,
         CookerId = 3,
         PlanId = 3
     };
     return cookerPlan;
 }
Example #9
0
 public CookerPlan ThirdCookerPlan()
 {
     var thirdCookerPlan = new CookerPlan
     {
         CookerPlanId = 3,
         CookerId = 1,
         PlanId = 3
     };
     return thirdCookerPlan;
 }