예제 #1
0
 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)
 {
 }
예제 #2
0
 public EventRepository(HookmanDataContext dataContext)
     : base(dataContext, x => x.Sender, x => x.Receiver, x => x.Action)
 {
 }
예제 #3
0
 public ActionRepository(HookmanDataContext dataContext)
     : base(dataContext, x => x.Events)
 {
 }
예제 #4
0
 public ReceiverRepository(HookmanDataContext dataContext)
     : base(dataContext, x => x.Events)
 {
 }
예제 #5
0
 protected BaseRepository(HookmanDataContext dataContext, params Expression <Func <TEntity, object> >[] queryIncludes)
 {
     _dataContext   = dataContext;
     _queryIncludes = queryIncludes;
 }
예제 #6
0
 public StatusRepository(HookmanDataContext dataContext) : base(dataContext)
 {
 }