Exemplo n.º 1
0
 public PaymentTypePricesController(IPaymentTypePriceRepository paymentTypePriceRepository, IPaymentTypeRepository paymentTypeRepository)
 {
     this.paymentTypePriceRepository = paymentTypePriceRepository;
     this.paymentTypeRepository      = paymentTypeRepository;
 }
Exemplo n.º 2
0
 public PaymentTypePricesController()
 {
     this.paymentTypePriceRepository = new PaymentTypePriceRepository(new GymContext());
     this.paymentTypeRepository      = new PaymentTypeRepository(new GymContext());
 }