Ejemplo n.º 1
0
 public RentalManager(IRentalDal rendalDal, ICustomerService customerService, ICarService carService, IFindexService findexService)
 {
     _rentalDal       = rendalDal;
     _customerService = customerService;
     _carService      = carService;
     _findexService   = findexService;
 }
Ejemplo n.º 2
0
 public FindexsController(IFindexService findexService)
 {
     _findexService = findexService;
 }
Ejemplo n.º 3
0
 public UserManager(IUserDal userDal, ICustomerService customerService, IFindexService findexService)
 {
     _userDal         = userDal;
     _customerService = customerService;
     _findexService   = findexService;
 }
Ejemplo n.º 4
0
 public PaymentManager(IPaymentDal paymentDal, IFindexService findexService)
 {
     _paymentDal    = paymentDal;
     _findexService = findexService;
 }