public CompanySystemData(ICompanySystemDbContext context)
 {
     this._context      = context;
     this._repositories = new Dictionary <Type, object>();
 }
Beispiel #2
0
 public EmployeesRepository(ICompanySystemDbContext context)
     : base(context)
 {
 }
 public GenericRepository(ICompanySystemDbContext context)
 {
     this.Context = context;
     this.Set     = context.Set <T>();
 }