Example #1
0
 public HomeController(IHomeInterface repository)
 {
     this.repository = repository;
 }
Example #2
0
 public HomeController(IHomeInterface homeInterface)
 {
     _homeInterface = homeInterface;
 }