public DichVuController(IDichVuService dichvuService, IConfiguration configuration,
                         IBillService billService,
                         IDichVuCategoryService dichvuCategoryService)
 {
     _dichvuService         = dichvuService;
     _dichvuCategoryService = dichvuCategoryService;
     _configuration         = configuration;
     _billService           = billService;
 }
Exemple #2
0
 public HomeController(IProductService productService,
                       IBlogService blogService, ICommonService commonService,
                       IDichVuService dichVuService, IDichVuCategoryService dichVuCategoryService,
                       IProductCategoryService productCategoryService, IStringLocalizer <HomeController> localizer)
 {
     _blogService            = blogService;
     _dichVuService          = dichVuService;
     _commonService          = commonService;
     _productService         = productService;
     _productCategoryService = productCategoryService;
     _dichVuCategoryService  = dichVuCategoryService;
     _localizer = localizer;
 }