Example #1
0
 public KeywordController(IAppUserRepo AppRepo, IKeywordRepo KeyRepo, IQueryRepo QRepo, IRestaurantRepo RestRepo)
 {
     Arepo = AppRepo;
     Krepo = KeyRepo;
     Qrepo = QRepo;
     Rrepo = RestRepo;
 }
Example #2
0
 public BlacklistAnalyticsController(IAppUserRepo AppRepo, IKeywordRepo KeyRepo, IQueryRepo QRepo, IRestaurantRepo RestRepo)
 {
     Arepo = AppRepo;
     Krepo = KeyRepo;
     Qrepo = QRepo;
     Rrepo = RestRepo;
 }
Example #3
0
 public OnUserCreateCreateQueryAsyncHook(IQueryRepo queryRepo)
 {
     _queryRepo = queryRepo;
 }
Example #4
0
 public UserController(IQueryRepo repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Example #5
0
 public ModeratorController(IQueryRepo repo, IMapper mapper)
 {
     _repo   = repo;
     _mapper = mapper;
 }
Example #6
0
 public QueryController(IQueryRepo queryRepo, IPersonRepo personRepo)
 {
     _queryRepo  = queryRepo;
     _personRepo = personRepo;
 }