Пример #1
0
 public RentalsController(IRentalsService rentalsService)
 {
     _rentalsService = rentalsService;
 }
Пример #2
0
 public RentalsController(IRentalsService rentalsService, IUnitOfWork unitOfWork)
 {
     _unitOfWork     = unitOfWork;
     _rentalsService = rentalsService;
 }
Пример #3
0
 public RentalsController(IRentalsService rentalsDal)
 {
     _rentalsService = rentalsDal;
 }
 public RentalsController(IRentalsService rentalsService, IBooksService booksService, ICustomersService customersService)
 {
     _rentalsService   = rentalsService;
     _booksService     = booksService;
     _customersService = customersService;
 }