public HookRepository(HookmanDataContext dataContext) : base(dataContext, x => x.Event, x => x.Event.Sender, x => x.Event.Receiver, x => x.Event.Action, x => x.Sender, x => x.Status) { }
public EventRepository(HookmanDataContext dataContext) : base(dataContext, x => x.Sender, x => x.Receiver, x => x.Action) { }
public ActionRepository(HookmanDataContext dataContext) : base(dataContext, x => x.Events) { }
public ReceiverRepository(HookmanDataContext dataContext) : base(dataContext, x => x.Events) { }
protected BaseRepository(HookmanDataContext dataContext, params Expression <Func <TEntity, object> >[] queryIncludes) { _dataContext = dataContext; _queryIncludes = queryIncludes; }
public StatusRepository(HookmanDataContext dataContext) : base(dataContext) { }