Exemplo n.º 1
0
        public StudentController(IStudentService studentService, IStudentNoteService studentNoteService,
                                 IPromoService promoService, IStudyAbroadService studyAbroadService)
        {
            StudentService     = studentService;
            StudentNoteService = studentNoteService;
            PromoService       = promoService;
            StudyAbroadService = studyAbroadService;

            ViewBag.ActivePage = ActivePageName;
        }
Exemplo n.º 2
0
 public NoteController(IStudentNoteService studentNoteService, IStudentService studentService)
 {
     StudentNoteService = studentNoteService;
     StudentService     = studentService;
 }