public EventRepository(DbContext context) { if (context == null) { throw new ArgumentNullException("context"); } _db = context as DevAgendaCtx; }
public LocationsQueryCache(DbContext context) { if (context == null) { throw new ArgumentNullException("context"); } _db = context as DevAgendaCtx; }