Ejemplo n.º 1
0
 public ProductController(IProductService productService, IVendingMachineStateManager vendingMachineStateManager)
 {
     _productService             = productService;
     _vendingMachineStateManager = vendingMachineStateManager;
 }
Ejemplo n.º 2
0
 public CoinController(IVendingMachineStateManager vendingMachineStateManager)
 {
     _vendingMachineStateManager = vendingMachineStateManager;
 }