Beispiel #1
0
 public CategoryController(ICategoryQueryProcessor categoryQueryProcessor, IAutoMapper mapper, IImageQueryProcessor imageQueryProcessor)
 {
     _categoryQueryProcessor = categoryQueryProcessor;
     __imageQueryProcessor   = imageQueryProcessor;
     _mapper = mapper;
 }
Beispiel #2
0
 public CategoriesController(ICategoryQueryProcessor queryProcessor, IAutoMapper autoMapper, IUriService uriService)
 {
     this.queryProcessor = queryProcessor;
     this.autoMapper = autoMapper;
     this.uriService = uriService;
 }