public DriversController(
     IDriversService driversService,
     IDriversRatingsService driversRatingsService,
     ICloudinaryService cloudinaryService)
 {
     this.driversService        = driversService;
     this.driversRatingsService = driversRatingsService;
     this.cloudinaryService     = cloudinaryService;
 }
Example #2
0
 public DriversRatingsController(
     IDriversRatingsService driversRatingsService,
     ITransfersService transfersService,
     UserManager <ApplicationUser> userManager)
 {
     this.driversRatingsService = driversRatingsService;
     this.transfersService      = transfersService;
     this.userManager           = userManager;
 }