public Function1(RepositoryCoches repo)
 {
     this.repo = repo;
 }
 public CochesController()
 {
     this.repo = new RepositoryCoches();
 }
 public CochesController(RepositoryCoches repo)
 {
     this.repo = repo;
 }
Esempio n. 4
0
 public HomeController(RepositoryCoches repo)
 {
     this.Repo = repo;
 }