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