Exemplo n.º 1
0
 public TaskRepository(IOptions <DefaultQueryConfigurations> defaultQueryConfigurations,
                       TmsDbContext tmsDbContext) : base(tmsDbContext)
 {
     this._defaultQueryConfigurations = defaultQueryConfigurations.Value;
 }
Exemplo n.º 2
0
 public BaseRepository(TmsDbContext tmsDbContext) =>
 this._tmsDbContext = tmsDbContext;
Exemplo n.º 3
0
 public UnitOfWork(TmsDbContext tmsDbContext)
 {
     this._tmsDbContext = tmsDbContext;
 }