示例#1
0
 public TestMembers(ApiDbFixture dbFixture, IMapper mapper)
 {
     _dbFixture = dbFixture;
     _mapper    = mapper;
 }
 public MemberFixture(ApiDbFixture dbFixture, IMapper mapper)
 {
     _transaction = dbFixture.Connection.BeginTransaction();
     Service      = new EFTeamService(dbFixture.CreateContext(), new NullLogger <EFTeamService>(), mapper);
 }
示例#3
0
 public TestAlerts(ApiDbFixture dbFixture, IMapper mapper)
 {
     _dbFixture = dbFixture;
     _mapper    = mapper;
 }
示例#4
0
 public TestShifts(ApiDbFixture db, IMapper mapper)
 {
     _dbFixture = db;
     _mapper    = mapper;
 }
示例#5
0
 public TestTimesheets(ApiDbFixture db, IMapper mapper)
 {
     _db     = db;
     _mapper = mapper;
 }