public Authentication(AkoContext context, IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
 public CoursesController(AkoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public SubjectsController(AkoContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }