public LoginController(RasporedContext context, LoginService loginService, StudentService studentService, AssistantService assistantService)
 {
     _context              = context;
     this.loginService     = loginService;
     this.studentService   = studentService;
     this.assistantService = assistantService;
 }
 public AssistantService(RasporedContext context,
                         GroupService groupsService,
                         ScheduleService scheduleService,
                         StudentService studentService)
 {
     _context             = context;
     this.groupService    = groupsService;
     this.scheduleService = scheduleService;
     this.studentService  = studentService;
 }
示例#3
0
 public DivisionsController(RasporedContext context, DivisionService divisionService)
 {
     _context             = context;
     this.divisionService = divisionService;
 }
示例#4
0
 public DivisionService(RasporedContext context, GroupService groupsService, StudentService studentService)
 {
     _context            = context;
     this.groupsService  = groupsService;
     this.studentService = studentService;
 }
示例#5
0
 public DepartmentService(RasporedContext context, GroupService groupsService, ScheduleService scheduleService)
 {
     _context             = context;
     this.groupsService   = groupsService;
     this.scheduleService = scheduleService;
 }
示例#6
0
 public GroupsController(RasporedContext context, GroupService groupService, StudentService studentService)
 {
     _context            = context;
     this.groupService   = groupService;
     this.studentService = studentService;
 }
示例#7
0
 public GroupService(RasporedContext context, ScheduleService scheduleService)
 {
     _context             = context;
     this.scheduleService = scheduleService;
 }
示例#8
0
 public ActivityScheduleController(RasporedContext context, ScheduleService scheduleService, GroupService groupService)
 {
     this._context        = context;
     this.scheduleService = scheduleService;
     this.groupService    = groupService;
 }
示例#9
0
 public StudentsController(RasporedContext context, StudentService studentService)
 {
     this._context       = context;
     this.studentService = studentService;
 }
示例#10
0
 public AssistantsController(RasporedContext context, AssistantService assistantService)
 {
     _context = context;
     this.assistantService = assistantService;
 }
 public DepartmentsController(RasporedContext context, DepartmentService departmentsService)
 {
     _context = context;
     this.departmentsService = departmentsService;
 }
示例#12
0
 public LoginService(RasporedContext context)
 {
     _context = context;
 }
 public CoursesController(RasporedContext context, CourseService courseService)
 {
     _context           = context;
     this.courseService = courseService;
 }
示例#14
0
 public ScheduleService(RasporedContext context)
 {
     _context = context;
 }
示例#15
0
 public StudentService(RasporedContext context, GroupService GroupsService, ScheduleService scheduleService)
 {
     _context             = context;
     this.groupService    = GroupsService;
     this.scheduleService = scheduleService;
 }
示例#16
0
 public ClassroomService(RasporedContext context, GroupService groupsService, ScheduleService scheduleService)
 {
     _context             = context;
     this.groupsService   = groupsService;
     this.scheduleService = scheduleService;
 }
示例#17
0
 public ClassroomsController(RasporedContext context, ClassroomService classroomsService)
 {
     _context = context;
     this.classroomsService = classroomsService;
 }