示例#1
0
 public SchoolClassService(RollCallDbContext context, ISubjectServices subjectServices, UserManager <User> userManager, ReadOnlyDbContext readOnlyDbContext)
 {
     this.context           = context;
     this.subjectServices   = subjectServices;
     this.userManager       = userManager;
     this.readOnlyDbContext = readOnlyDbContext;
 }
示例#2
0
 public UsersController(
     IUserService userService,
     UserManager <User> userManager,
     ISubjectServices subjectServices)
 {
     this.userService     = userService;
     this.userManager     = userManager;
     this.subjectServices = subjectServices;
 }
示例#3
0
 public SubjectsController(
     ISubjectServices subjectServices,
     IAttendanceService attendanceService,
     UserManager <User> userManager)
 {
     this.subjectServices   = subjectServices;
     this.attendanceService = attendanceService;
     this.userManager       = userManager;
 }
 public SchoolClassesController(
     ISchoolClassService schoolClassService,
     ISubjectServices subjectServices,
     IAttendanceService attendanceService,
     UserManager <User> userManager, IConfiguration config)
 {
     this.schoolClassService = schoolClassService;
     this.subjectServices    = subjectServices;
     this.attendanceService  = attendanceService;
     this.userManager        = userManager;
     this.config             = config;
 }
示例#5
0
        public SubjectController(IRepositroy <Subjects> repositroy, IMapper mapper,
                                 IRepositroy <SubjectType> subjectTypeRepositroy,
                                 IRepositroy <StudySemester> studySemesterRepositroy,
                                 IRepositroy <StudentSubject> studentSubjectRepositroy,
                                 IRepositroy <EquivalentSubject> equivalentSubjectRepositroy,
                                 IRepositroy <DependenceSubject> dependenceSubjectRepositroy,

                                 AbstractUnitOfWork abstractUnitOfWork,
                                 ISubjectServices subjectServices) : base(mapper)
        {
            _subjectServices             = subjectServices;
            _subjectRepositroy           = repositroy;
            _subjectTypeRepositroy       = subjectTypeRepositroy;
            _studySemesterRepositroy     = studySemesterRepositroy;
            _equivalentSubjectRepositroy = equivalentSubjectRepositroy;
            _dependenceSubjectRepositroy = dependenceSubjectRepositroy;
            _abstractUnitOfWork          = abstractUnitOfWork;
            _studentSubjectRepositroy    = studentSubjectRepositroy;
        }
示例#6
0
 public StudyPlanController(
     IRepositroy <StudyPlan> repositroy,
     IRepositroy <Years> yearRepositroy,
     IRepositroy <Specializations> specializationsRepositroy,
     IRepositroy <StudyYear> studyYearRepositroy,
     IRepositroy <Subjects> subjectRepositroy,
     IRepositroy <SubjectType> subjectTypeRepositroy,
     AbstractUnitOfWork abstractUnitOfWork,
     IMapper mapper, ISubjectServices subjectServices) : base(mapper)
 {
     _subjectServices           = subjectServices;
     _StudyPlanRepositroy       = repositroy;
     _yearRepositroy            = yearRepositroy;
     _specializationsRepositroy = specializationsRepositroy;
     _studyYearRepositroy       = studyYearRepositroy;
     _subjectTypeRepositroy     = subjectTypeRepositroy;
     _subjectRepositroy         = subjectRepositroy;
     _abstractUnitOfWork        = abstractUnitOfWork;
 }
 public DeleteSubjectModel(ISubjectServices subjectServices)
 {
     data = subjectServices;
 }
示例#8
0
 public SubjectApiController(ISubjectServices SubjectServices)
 {
     this._SubjectServices = SubjectServices;
 }
示例#9
0
 public SubjectsModel(ISubjectServices subjectServices)
 {
     _subjectData = subjectServices;
 }
示例#10
0
 public UpdateRecords(IYearsSemServices yearsSemServices, ISubjectServices subjectServices)
 {
     _semData     = yearsSemServices;
     _subjectData = subjectServices;
 }