예제 #1
0
 public CategoryController(CategoryService categoryService)
 {
     this.CategoryService = categoryService;
 }
예제 #2
0
 public CategoryWidget(CategoryService categoryService)
 {
     this.CategoryService = categoryService;
 }
예제 #3
0
 public ArticleService(IConfiguration configuration, CategoryService categoryService, ICache cache)
     : base(configuration)
 {
     this.CategoryService = categoryService;
     this.Cache = cache;
 }