Ejemplo n.º 1
0
 public UsersController(LabTestDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Ejemplo n.º 2
0
 public RegistrationRepository(LabTestDbContext context)
 {
     _dbContext = context;
 }
Ejemplo n.º 3
0
 public TaskRepository(LabTestDbContext context)
 {
     _dbContext = context;
 }