public AuthorizationController(IJWTAuth iJWTAuth, IDepartmentDataService departmentDataService, IFunctionPowerDataService powerDataService, IRoleDataService roleDataService, IAppInfoDataService appInfoDataService) : base(iJWTAuth)
 {
     this.departmentDataService = departmentDataService;
     this.powerDataService      = powerDataService;
     this.roleDataService       = roleDataService;
     this.appInfoDataService    = appInfoDataService;
 }
 public CoursesController(SchoolContext db, ICourseDataService courseService, IDepartmentDataService departmentService, IStudentDataService studentService)
 {
     this.db                = db;
     this.courseService     = courseService;
     this.departmentService = departmentService;
     this.studentService    = studentService;
 }
 public DepartmentsController(SchoolContext context, IDepartmentDataService departmentService)
 {
     this.context           = context;
     this.departmentService = departmentService;
 }
예제 #4
0
 public DepartmentsController(SchoolContext db, IDepartmentDataService departmentService)
 {
     this.db = db;
     this.departmentService = departmentService;
 }
예제 #5
0
 public AdminController(IJWTAuth auth, IUserInfoDataService userInfoDataService, IUserAuthorizationDataService userAuthorizationDataService, IDepartmentDataService departmentDataService) : base(auth)
 {
     this.userInfoDataService          = userInfoDataService;
     this.userAuthorizationDataService = userAuthorizationDataService;
     this.departmentDataService        = departmentDataService;
 }
예제 #6
0
 public DepartmentController(IJWTAuth auth, IDepartmentDataService dataService, IUserInfoDataService userInfoDataService) : base(auth)
 {
     this.dataService         = dataService;
     this.userInfoDataService = userInfoDataService;
 }
 public DepartmentService(IDepartmentDataService deptDataService, ILocalizationService localizationService)
 {
     this._deptDataService     = deptDataService;
     this._localizationService = localizationService;
 }
예제 #8
0
 public RoleController(IJWTAuth auth, IRoleDataService roleDataService, IDepartmentDataService departmentDataService) : base(auth)
 {
     this.roleDataService       = roleDataService;
     this.departmentDataService = departmentDataService;
 }
예제 #9
0
 public DepartmentDropDown(IDepartmentDataService dataService) : base(x => x.ID, x => x.Name)
 {
     this.dataService = dataService;
 }
예제 #10
0
 public DepartmentController(IJWTAuth auth, IDepartmentDataService dataService) : base(auth)
 {
     this.dataService = dataService;
 }