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