Exemplo n.º 1
0
 //private FoxesViewModel foxesViewModel;
 public HomeController(FoxService foxService, FoxesViewModel foxesViewModel)
 {
     this.foxService    = foxService;
     FoxesViewModelProp = foxesViewModel;
 }
Exemplo n.º 2
0
 public HomeController(FoxService foxService)
 {
     this.foxService = foxService;
 }
 public FoxesViewModel(FoxService foxService)
 {
     Foxes = foxService.GetFoxes();
 }