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