public UsersController(LabTestDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Beispiel #2
0
 public RegistrationRepository(LabTestDbContext context)
 {
     _dbContext = context;
 }
Beispiel #3
0
 public TaskRepository(LabTestDbContext context)
 {
     _dbContext = context;
 }