Exemplo n.º 1
0
 public SayingsController(
     ISayingsService sayingsService,
     ICategoriesService categoriesService,
     ISayingsCategorizer sayingsCategorizer)
 {
     this.sayingsService     = sayingsService;
     this.categoriesService  = categoriesService;
     this.sayingsCategorizer = sayingsCategorizer;
 }
Exemplo n.º 2
0
 public HomeController(ISayingsService sayingsService)
 {
     this.sayingsService = sayingsService;
 }