public HomeController(IStudentResearchGroupService studentResearchGroupService, ISubjectService subjectService, KolaNaukoweDbContext context, IMapper mapper)
 {
     _mapper  = mapper;
     _context = context;
     _studentResearchGroupService = studentResearchGroupService;
     _subjectService = subjectService;
 }
 public StudentResearchGroupService(KolaNaukoweDbContext context, IGenericRepository <StudentResearchGroup> genericRepository, IMapper mapper, ISubjectService subjectService)
 {
     _genericRepository = genericRepository;
     _mapper            = mapper;
     _subjectService    = subjectService;
     _context           = context;
 }
Exemplo n.º 3
0
 public GenericRepository(KolaNaukoweDbContext context, IAuthorizationService authorizationService, UserManager <ApplicationUser> userManager)
 {
     _context = context;
 }