示例#1
0
 public BlogController(ICategoryAppService categoryAppService, IArticleAppService articleAppService,
                       IAuthorAppService authorAppService, ISearchService searchService)
 {
     _categoryAppService = categoryAppService;
     _articleAppService  = articleAppService;
     _authorAppService   = authorAppService;
     _searchService      = searchService;
 }
示例#2
0
 public HomeController(IArticleAppService articleAppService, ILogger <HomeController> Iogger, IUserAppService service, IStringLocalizer <HomeController> localizer, IServiceProvider serviceProvider, IDepartmentAppService departmentAppService)
 {
     logger                = Iogger;
     _service              = service;
     _localizer            = localizer;
     _serviceProvider      = serviceProvider;
     _departmentAppService = departmentAppService;
     _articleService       = articleAppService;
 }
示例#3
0
 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;
 }
 public ArticlesController(IArticleAppService articleAppService)
 {
     _articleAppService = articleAppService;
 }
示例#5
0
 public HomeController(IUserAppService userAppService, IHostingEnvironment hostingEnvironment, IArticleAppService articleAppService)
 {
     _userAppService     = userAppService;
     _articleAppService  = articleAppService;
     _hostingEnvironment = hostingEnvironment;
 }
示例#6
0
 public ArticleController(IArticleAppService service)
 {
     _service = service;
 }
示例#7
0
 public ArticleController(IArticleAppService articleAppService, IArticleCategoryAppService articleCategoryAppService)
 {
     _articleAppService         = articleAppService;
     _articleCategoryAppService = articleCategoryAppService;
 }
示例#8
0
 public ArticlesController(IArticleAppService app)
 {
     this._app = app;
 }
 public EditModalModel(IArticleAppService service)
 {
     _service = service;
 }
示例#10
0
 public ArticlesController(IArticleAppService articleAppService) : base(articleAppService)
 {
     _articleAppService = articleAppService;
 }
示例#11
0
 public ArticleController(IArticleAppService articleAppService, ICategoryAppService categoryAppService)
 {
     this._articleAppService  = articleAppService;
     this._categoryAppService = categoryAppService;
 }
 public CreateModalModel(IArticleAppService service)
 {
     _service = service;
 }
 public ArticleAppService_Test()
 {
     _articleAppService = GetRequiredService <ArticleAppService>();
 }
 public ArticlesController(IArticleAppService articleAppService, IStoreAppService storeAppService)
 {
     _articleAppService = articleAppService;
     _storeAppService   = storeAppService;
 }
示例#15
0
 public ArticleController(ICommonCategoryAppService catAppService, IArticleAppService AppService, ICommonAppService comService)
 {
     _catAppService = catAppService;
     _AppService    = AppService;
     _comService    = comService;
 }
示例#16
0
 public ArticleController(IArticleAppService articleAppService, IMapper mapper)
 {
     _articleAppService = articleAppService;
     _mapper            = mapper;
 }
示例#17
0
 public ArticleController(IArticleAppService articleAppService)
 {
     _articleAppService = articleAppService;
 }
示例#18
0
 public ArticleController(IArticleTypeAppService articleTypeAppService, ILanguageTypeAppService languageTypeAppService, IArticleAppService ArticleAppService)
 {
     _articleTypeAppService  = articleTypeAppService;
     _languageTypeAppService = languageTypeAppService;
     _ArticleAppService      = ArticleAppService;
 }
示例#19
0
 public ArticleAppServiceTests()
 {
     _articleAppService = GetRequiredService <IArticleAppService>();
 }
示例#20
0
 public CategoryAppService(ICategoryDomainService categoryDomainService, IArticleAppService articleAppService) : base(categoryDomainService)
 {
     this._articleAppService = articleAppService;
 }