public LoggedUserController(IUserService userService, ILoggedUserService loggedUserService, ICustomerService customerService, IAuthService authService, ICreditCardService creditCardService, IFindexScoreService findexScoreService)
 {
     _userService        = userService;
     _loggedUserService  = loggedUserService;
     _customerService    = customerService;
     _authService        = authService;
     _creditCardService  = creditCardService;
     _findexScoreService = findexScoreService;
 }
Exemple #2
0
 public LoggedUserManager(IUserService userService, IRentalService rentalService, ICustomerService customerService, ICreditCardService creditCardService, IFindexScoreService findexScoreService, IRequiredScoreService requiredScoreService)
 {
     _customerService      = customerService;
     _userService          = userService;
     _rentalService        = rentalService;
     _creditCardService    = creditCardService;
     _findexScoreService   = findexScoreService;
     _requiredScoreService = requiredScoreService;
 }
Exemple #3
0
 public FindexScoresController(IFindexScoreService findexScoreService)
 {
     _findexScoreService = findexScoreService;
 }
 public RentalManager(IRentalDal rentalDal, ICarService carService, IFindexScoreService findexScoreService)
 {
     _rentalDal          = rentalDal;
     _carService         = carService;
     _findexScoreService = findexScoreService;
 }