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