Esempio n. 1
0
 public StudentInfoController(IStudentInfoService studentInfoService, IStudentClassService studentClassService, IReportCardService reportCardService, IMemoryCache cache)
 {
     _studentInfoService  = studentInfoService;
     _studentClassService = studentClassService;
     _reportCardService   = reportCardService;
     _cache = cache;
 }
 public UserManagersController(UserManagerService userService, ApplicationUserManager userManager, ApplicationRoleManager roleManager, EnrollmentService enrollmentService, ImageService imageService, StudentInfoService studentProfile, TeacherProfileService teacherService)
 {
     _userService = userService;
     UserManager  = userManager;
     //_classlevelService = classLevelService;
     RoleManager        = roleManager;
     _imageService      = imageService;
     _studentService    = studentProfile;
     _enrollmentService = enrollmentService;
     _teacherService    = teacherService;
 }
Esempio n. 3
0
 public StudentDepartmentController(IStudentInfoService inf, IStudentService st, IEducationalDegreeService educ, IGruppaService gr, IFormEducationService efs,
                                    ICathedraService cs, IStudentService ss, ITeacherService ts)
 {
     studentInfo     = inf;
     studen          = st;
     educDegree      = educ;
     gruppaService   = gr;
     educFormService = efs;
     cathedra        = cs;
     starosta        = ss;
     curator         = ts;
 }
 public PanelController(
     TeacherProfileService teacherProfileService,
     PackageService packageService,
     EnrollmentService enrollmentService,
     StudentInfoService studentInfoService,
     ImageService imageService,
     AssignmentService assignmentService
     )
 {
     _imageService          = imageService;
     _teacherProfileService = teacherProfileService;
     _packageService        = packageService;
     _enrollmentService     = enrollmentService;
     _studentInfoService    = studentInfoService;
     _assignmentService     = assignmentService;
 }
 public OperationController(IStudentInfoService studentInfoService, IReportCardService reportCardService)
 {
     _studentInfoService = studentInfoService;
     _reportCardService  = reportCardService;
 }
 public ReportCardController(IReportCardService reportCardService, IStudentInfoService studentInfoService)
 {
     _reportCardService  = reportCardService;
     _studentInfoService = studentInfoService;
 }
 public StudentProfilesController(StudentInfoService studentProfileService)
 {
     _studentProfileService = studentProfileService;
 }