예제 #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="phyGradeServices"></param>
 /// <param name="gradeServices"></param>
 /// <param name="usersService"></param>
 /// <param name="googleAuthService"></param>
 /// <param name="userActionServices"></param>
 /// <param name="currentUserService"></param>
 /// <param name="context"></param>
 public GradeManagerController(IPhyGradeServices phyGradeServices, IGradeServices gradeServices, IUsersService usersService, IGoogleAuthService googleAuthService, IUserActionServices userActionServices, ICurrentUserService currentUserService, ApplicationDbContext context)
 {
     this.phyGradeServices   = phyGradeServices;
     this.gradeServices      = gradeServices;
     this.usersService       = usersService;
     this.googleAuthService  = googleAuthService;
     this.userActionServices = userActionServices;
     this.currentUserService = currentUserService;
     this.context            = context;
 }
예제 #2
0
 public GradesController(IGradeServices main)
 {
     _main = main;
 }