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