示例#1
0
 public CustomerTagController(
     ICustomerTagViewModelService customerTagViewModelService,
     ILocalizationService localizationService,
     ICustomerTagService customerTagService)
 {
     _customerTagViewModelService = customerTagViewModelService;
     _localizationService         = localizationService;
     _customerTagService          = customerTagService;
 }
示例#2
0
 public CustomerTagController(
     ICustomerTagViewModelService customerTagViewModelService,
     ITranslationService translationService,
     ICustomerTagService customerTagService)
 {
     _customerTagViewModelService = customerTagViewModelService;
     _translationService          = translationService;
     _customerTagService          = customerTagService;
 }