//Ctor Dependency injection
 public OhmValueController(IResistorService resistorService)
 {
     this.resistorService = resistorService;
 }
Exemple #2
0
 //Constructor Dependency injection
 public HomeController(IResistorService resistorService)
 {
     this.resistorService = resistorService;
 }