public UnitOfWork(SteveContext context) { this.context = context; }
public UserRepository(SteveContext context) { this.context = context; this.entities = context.Set <T>(); }
public UnitOfWork() { context = new SteveContext(); }