public SubjectsController(IMapper mapper, AuthLibraryDBContext context, ISubjectRepository manager)
 {
     _mapper  = mapper;
     _context = context;
     _manager = manager;
 }
Exemple #2
0
 public AdminController(AuthLibraryDBContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
 }
Exemple #3
0
 public SubjectManager(AuthLibraryDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }