コード例 #1
0
 public CookerPromotion SecondCookerPromotion()
 {
     var firstCookerPromotion = new CookerPromotion
     {
         CookerPromotionId = 2,
         CookerId = 3,
         PromotionId = 2
     };
     return firstCookerPromotion;
 }
コード例 #2
0
 public CookerPromotion ThirdCookerPromotion()
 {
     var thirdCookerPromotion = new CookerPromotion
     {
         CookerPromotionId = 3,
         CookerId = 3,
         PromotionId = 3
     };
     return thirdCookerPromotion;
 }
コード例 #3
0
 public CookerPromotion FirstCookerPromotion()
 {
     var firstCookerPromotion = new CookerPromotion
     {
         CookerPromotionId = 1,
         CookerId = 2,
         PromotionId = 1
     };
     return firstCookerPromotion;
 }