Exemplo n.º 1
0
 public CookerPromotion SecondCookerPromotion()
 {
     var firstCookerPromotion = new CookerPromotion
     {
         CookerPromotionId = 2,
         CookerId = 3,
         PromotionId = 2
     };
     return firstCookerPromotion;
 }
Exemplo n.º 2
0
 public CookerPromotion ThirdCookerPromotion()
 {
     var thirdCookerPromotion = new CookerPromotion
     {
         CookerPromotionId = 3,
         CookerId = 3,
         PromotionId = 3
     };
     return thirdCookerPromotion;
 }
Exemplo n.º 3
0
 public CookerPromotion FirstCookerPromotion()
 {
     var firstCookerPromotion = new CookerPromotion
     {
         CookerPromotionId = 1,
         CookerId = 2,
         PromotionId = 1
     };
     return firstCookerPromotion;
 }