示例#1
0
 public PaymentTypePricesController(IPaymentTypePriceRepository paymentTypePriceRepository, IPaymentTypeRepository paymentTypeRepository)
 {
     this.paymentTypePriceRepository = paymentTypePriceRepository;
     this.paymentTypeRepository      = paymentTypeRepository;
 }
示例#2
0
 public PaymentTypePricesController()
 {
     this.paymentTypePriceRepository = new PaymentTypePriceRepository(new GymContext());
     this.paymentTypeRepository      = new PaymentTypeRepository(new GymContext());
 }