コード例 #1
0
ファイル: HomeController.cs プロジェクト: ly2018/t
 public HomeController(IStringLocalizer <HomeController> localizer, IUnitOfWork unitOfWork, IServiceProvider serviceProvider, IPlateSettingAppService plateSettingAppService, ILanguageTypeAppService languageTypeAppService, ISiteSettingAppService siteSettingAppService, ICustomerUserAppService customerUserAppService, IArticleAppService articleAppService, IArticleTypeAppService articleTypeAppService)
 {
     _customerUserAppService = customerUserAppService;
     _siteSettingAppService  = siteSettingAppService;
     _articleAppService      = articleAppService;
     _articleTypeAppService  = articleTypeAppService;
     _languageTypeAppService = languageTypeAppService;
     _plateSettingAppService = plateSettingAppService;
     _serviceProvider        = serviceProvider;
     _unitOfWork             = unitOfWork;
     _localizer = localizer;
 }
コード例 #2
0
ファイル: CustomerUserController.cs プロジェクト: ly2018/t
 public CustomerUserController(ICustomerUserAppService CustomerUserAppService)
 {
     _CustomerUserAppService = CustomerUserAppService;
 }