public CookerPaymentMethod SecondCookerPaymentMethod()
 {
     var secondCookerPaymentMethod = new CookerPaymentMethod
     {
         CookerPaymentMethodId = 2,
         CookerId = 1,
         PaymentMethodId = 2
     };
     return secondCookerPaymentMethod;
 }
 public CookerPaymentMethod FourthCookerPaymentMethod()
 {
     var fourthCookerPaymentMethod = new CookerPaymentMethod
     {
         CookerPaymentMethodId = 4,
         CookerId = 2,
         PaymentMethodId = 1
     };
     return fourthCookerPaymentMethod;
 }
 public CookerPaymentMethod FirstCookerPaymentMethod()
 {
     var firstCookerPaymentMethod = new CookerPaymentMethod
     {
         CookerPaymentMethodId = 1,
         CookerId = 1,
         PaymentMethodId = 1
     };
     return firstCookerPaymentMethod;
 }
 public CookerPaymentMethod FifthCookerPaymentMethod()
 {
     var fifthCookerPaymentMethod = new CookerPaymentMethod
     {
         CookerPaymentMethodId = 5,
         CookerId = 2,
         PaymentMethodId = 2
     };
     return fifthCookerPaymentMethod;
 }
 public CookerPaymentMethod ThirdCookerPaymentMethod()
 {
     var thirdCookerPaymentMethod = new CookerPaymentMethod
     {
         CookerPaymentMethodId = 3,
         CookerId = 1,
         PaymentMethodId = 3
     };
     return thirdCookerPaymentMethod;
 }
 public CookerPaymentMethod SixthCookerPaymentMethod()
 {
     var sixthCookerPaymentMethod = new CookerPaymentMethod
     {
         CookerPaymentMethodId = 6,
         CookerId = 3,
         PaymentMethodId = 3
     };
     return sixthCookerPaymentMethod;
 }