Beispiel #1
0
 public ValuesController(MyTaskDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public TaskUnitRepository(MyTaskDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public EmployeeService(IMapper _mapper, MyTaskDbContext _dbContext)
 {
     mapper    = _mapper;
     dbcontext = _dbContext;
 }
Beispiel #4
0
 public DepartmentService(IMapper _mapper, MyTaskDbContext _dbContext)
 {
     mapper    = _mapper;
     dbcontext = _dbContext;
 }
 public UserRepository(MyTaskDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public JobService(IMapper _mapper, MyTaskDbContext _dbContext)
 {
     mapper    = _mapper;
     dbcontext = _dbContext;
 }