public TeacherSchoolClassSubjectService()
 {
     _teacherSclClsSubjRepository = new TeacherSchoolClassSubjectRepository();
     _hashidsService = new HashidService();
     _schoolClassSubjectRepository = new SchoolClassSubjectRepository();
     _teacherService = new TeacherService();
 }
 public SchoolClassSubjectService()
 {
     _subjectRepository            = new SubjectRepository();
     _schoolClassRepository        = new SchoolClassRepository();
     _schoolClassSubjectRepository = new SchoolClassSubjectRepository();
     _hashidService = new HashidService();
 }
 public SchoolClassService()
 {
     _schoolClassRepository = new SchoolClassRepository();
     _hashidsService        = new HashidService();
 }
 public TeacherService()
 {
     _teacherRepository = new TeacherRepository();
     _hashids           = new HashidService();
 }
示例#5
0
 public TeacherService()
 {
     _teacherRepository = new TeacherRepository();
     _hashids           = new HashidService();
     _userManager       = new ApplicationUserManager(new UserStore <ApplicationUser>(new ApplicationDbContext()));
 }