public DashboardController(IGetCountService getCount)
 {
     this.getCount = getCount;
 }
Exemple #2
0
 public HomeController(IGetCountService countService, IRecipeService recipeService)
 {
     this.countService  = countService;
     this.recipeService = recipeService;
 }
 public HomeController(IGetCountService countsService)
 {
     this.countsService = countsService;
 }
 public HomeController(IGetCountService getCount)
 {
     this.getCount = getCount;
 }