Пример #1
0
 public MonthsController(IMonthsService monthsService, IMapper mapper)
 {
     this.monthsService = monthsService;
     this.mapper        = mapper;
 }
Пример #2
0
 public PaymentsController(IPaymentService paymentService, IMapper mapper, IMonthsService monthsService)
 {
     this.paymentService = paymentService;
     this.mapper         = mapper;
     this.monthsService  = monthsService;
 }