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