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