public UnitOfWork() { _context = new SouthernERP_Context(); }
/// <summary> /// Public Constructor,initializes privately declared local variables. /// </summary> /// <param name="context"></param> public GenericRepository(SouthernERP_Context context) { this.Context = context; this.DbSet = context.Set <TEntity>(); }