Beispiel #1
0
 public UnitOfWork()
 {
     context = new BillingDBContext();
 }
Beispiel #2
0
 public Repository(BillingDBContext context)
 {
     this._context  = context;
     this._entities = _context.Set <TEntity>();
 }
Beispiel #3
0
 public UnitOfWork(BillingDBContext context)
 {
     this.context = context;
 }