public HomeController(
     IHomeService homeService,
     IMailService mailService,
     ITransfersTypesService transfersTypesService)
 {
     this.homeService           = homeService;
     this.mailService           = mailService;
     this.transfersTypesService = transfersTypesService;
 }
 public TransfersController(
     ITransfersService transfersService,
     IDriversService driversService,
     ITransfersTypesService transfersTypesService,
     UserManager <ApplicationUser> userManager,
     IUsersService usersService)
 {
     this.transfersService      = transfersService;
     this.driversService        = driversService;
     this.transfersTypesService = transfersTypesService;
     this.userManager           = userManager;
     this.usersService          = usersService;
 }
Example #3
0
 public TransfersTypesController(ITransfersTypesService transfersTypesService)
 {
     this.transfersTypesService = transfersTypesService;
 }