public DashboardController(ICoachingService coachingService, IBoostingService boostingService, IUsersService usersService, UserManager <ApplicationUser> userManager)
 {
     this.coachingService = coachingService;
     this.boostingService = boostingService;
     this.usersService    = usersService;
     this.userManager     = userManager;
 }
Example #2
0
 public BoostingController(IBoostingService boostingService, IUsersService usersService, UserManager <ApplicationUser> userManager)
 {
     this.boostingService = boostingService;
     this.usersService    = usersService;
     this.userManager     = userManager;
 }