public BaseRepository(TmsContext baseDbContext, ITmsDapper dapper)
 {
     _dbContext = baseDbContext;
     _dapper    = dapper;
 }
Ejemplo n.º 2
0
 public TrainingRepository(TmsContext tmsContext) : base(tmsContext)
 {
 }
Ejemplo n.º 3
0
 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)
 {
 }
Ejemplo n.º 7
0
 public EmailLogRepository(TmsContext tmsContext) : base(tmsContext)
 {
 }
Ejemplo n.º 8
0
 public SecurityEmployeeDelegationRepository(TmsContext tmsContext, ITmsDapper dapper) : base(tmsContext, dapper)
 {
 }
Ejemplo n.º 9
0
 public EmailAttachmentRepository(TmsContext tmsContext) : base(tmsContext)
 {
 }