Example #1
0
 public void ClientCode(ICocheService service, string codigo)
 {
     service.ArrancarCoche(codigo);
 }
Example #2
0
 public CocheController(ICocheService cocheService)
 {
     this.cocheService = cocheService;
 }
Example #3
0
 public Proxy(ICocheService iService)
 {
     _iService = iService;
 }