예제 #1
0
 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;
 }