public BaseRepository(TmsContext baseDbContext, ITmsDapper dapper) { _dbContext = baseDbContext; _dapper = dapper; }
public TrainingRepository(TmsContext tmsContext) : base(tmsContext) { }
public EmailQueueRepository(TmsContext tmsContext) : base(tmsContext) { }
public BaseRepository(TmsContext baseDbContext) { _dbContext = baseDbContext; }
public SecurityRoleRepository(TmsContext tmsContext) : base(tmsContext) { }
public SecurityUserRoleRepository(TmsContext tmsContext, ITmsDapper dapper) : base(tmsContext, dapper) { }
public EmailLogRepository(TmsContext tmsContext) : base(tmsContext) { }
public SecurityEmployeeDelegationRepository(TmsContext tmsContext, ITmsDapper dapper) : base(tmsContext, dapper) { }
public EmailAttachmentRepository(TmsContext tmsContext) : base(tmsContext) { }