public StudentController(IStudentService studentService, IStudentNoteService studentNoteService, IPromoService promoService, IStudyAbroadService studyAbroadService) { StudentService = studentService; StudentNoteService = studentNoteService; PromoService = promoService; StudyAbroadService = studyAbroadService; ViewBag.ActivePage = ActivePageName; }
public NoteController(IStudentNoteService studentNoteService, IStudentService studentService) { StudentNoteService = studentNoteService; StudentService = studentService; }