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