public ManagingStudentService()
 {
     studentRepository      = new StudentRepository();
     rankingRepository      = new RankingRepository();
     learningModeRepository = new LearningModeRepository();
     majorRepository        = new MajorRepository();
     ethnicRepository       = new EthnicRepository();
 }
Esempio n. 2
0
 public EthnicService(IEthnicRepository enthnicRepository)
 {
     _ethnicRepository = enthnicRepository;
 }