Beispiel #1
0
 public BlogController(ICategoryAppService categoryAppService, IArticleAppService articleAppService,
                       IAuthorAppService authorAppService, ISearchService searchService)
 {
     _categoryAppService = categoryAppService;
     _articleAppService  = articleAppService;
     _authorAppService   = authorAppService;
     _searchService      = searchService;
 }
Beispiel #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;
 }
Beispiel #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;
 }
Beispiel #5
0
 public HomeController(IUserAppService userAppService, IHostingEnvironment hostingEnvironment, IArticleAppService articleAppService)
 {
     _userAppService     = userAppService;
     _articleAppService  = articleAppService;
     _hostingEnvironment = hostingEnvironment;
 }
Beispiel #6
0
 public ArticleController(IArticleAppService service)
 {
     _service = service;
 }
Beispiel #7
0
 public ArticleController(IArticleAppService articleAppService, IArticleCategoryAppService articleCategoryAppService)
 {
     _articleAppService         = articleAppService;
     _articleCategoryAppService = articleCategoryAppService;
 }
Beispiel #8
0
 public ArticlesController(IArticleAppService app)
 {
     this._app = app;
 }
 public EditModalModel(IArticleAppService service)
 {
     _service = service;
 }
Beispiel #10
0
 public ArticlesController(IArticleAppService articleAppService) : base(articleAppService)
 {
     _articleAppService = articleAppService;
 }
Beispiel #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;
 }
Beispiel #15
0
 public ArticleController(ICommonCategoryAppService catAppService, IArticleAppService AppService, ICommonAppService comService)
 {
     _catAppService = catAppService;
     _AppService    = AppService;
     _comService    = comService;
 }
Beispiel #16
0
 public ArticleController(IArticleAppService articleAppService, IMapper mapper)
 {
     _articleAppService = articleAppService;
     _mapper            = mapper;
 }
Beispiel #17
0
 public ArticleController(IArticleAppService articleAppService)
 {
     _articleAppService = articleAppService;
 }
Beispiel #18
0
 public ArticleController(IArticleTypeAppService articleTypeAppService, ILanguageTypeAppService languageTypeAppService, IArticleAppService ArticleAppService)
 {
     _articleTypeAppService  = articleTypeAppService;
     _languageTypeAppService = languageTypeAppService;
     _ArticleAppService      = ArticleAppService;
 }
Beispiel #19
0
 public ArticleAppServiceTests()
 {
     _articleAppService = GetRequiredService <IArticleAppService>();
 }
Beispiel #20
0
 public CategoryAppService(ICategoryDomainService categoryDomainService, IArticleAppService articleAppService) : base(categoryDomainService)
 {
     this._articleAppService = articleAppService;
 }