Example #1
0
 public ServiceController(IUnitOfWork uow, IServiceService postService, ITagService tagService, IServiceCategoryService categotyService)
 {
     _uow                    = uow;
     _serviceService         = postService;
     _tagService             = tagService;
     _serviceCategoryService = categotyService;
 }
 public ServiceCategoryController(
     ILocalizedEntityService localizedEntityService,
     IServiceCategoryService categoryService)
 {
     _localizedEntityService = localizedEntityService;
     _categoryService        = categoryService;
 }
 public HomeController(
     IServiceCategoryService categoryService,
     IServiceService serviceService,
     IContentService contentService,
     ISliderService sliderService)
 {
     _categoryService = categoryService;
     _serviceService  = serviceService;
     _contentService  = contentService;
     _sliderService   = sliderService;
 }
 public ServiceCategoryController(IServiceCategoryService serviceCategoryService, IServiceCategoryQueryService serviceCategoryQueryService)
 {
     _serviceCategoryService      = serviceCategoryService;
     _serviceCategoryQueryService = serviceCategoryQueryService;
 }
 public ServiceCategoryController(IServiceCategoryService serviceCategoryService)
 {
     this._serviceCategoryService = serviceCategoryService;
 }
Example #6
0
 public ServiceCategoryController(IUnitOfWork uow, IServiceCategoryService serviceCategoryService)
 {
     _uow = uow;
     _serviceCategoryService = serviceCategoryService;
 }
 public ServiceCategoryController()
 {
     serviceCategoryService = new ServiceCategoryService();
 }