Ejemplo n.º 1
0
 public ShopController(
     IShopOperation shopOperation,
     IProductOperation productOperation
     )
 {
     _shopOperation    = shopOperation;
     _productOperation = productOperation;
 }
Ejemplo n.º 2
0
 public HomeController(
     ILogger <HomeController> logger,
     IProductOperation productOperation,
     IShopOperation shopOperation)
 {
     _logger           = logger;
     _productOperation = productOperation;
     _shopOperation    = shopOperation;
 }