public VolunteerRepository(VMSDataContext context) : base(context) { if (context == null) { throw new Exception("No context information was sent."); } }
public RepositoryBase(VMSDataContext ctx) { this.context = ctx; this.dbSet = context.Set <TEntity>(); }