예제 #1
0
 public CourseAdminController(UniversityMvcProjectContext context)
 {
     _context = context;
 }
 public StudentAdminController(UniversityMvcProjectContext context, IMapper mapper)
 {
     _context    = context;
     this.mapper = mapper;
 }
예제 #3
0
 public SubjectAdminController(UniversityMvcProjectContext context)
 {
     _context = context;
 }