Ejemplo n.º 1
0
 public ProductsController(ICreateProductCommand createProduct, IGetProductsCommand getProducts, IDeleteProductsCommand deleteProducts, IEditProductCommand editProduct)
 {
     _createProduct  = createProduct;
     _getProducts    = getProducts;
     _deleteProducts = deleteProducts;
     _editProduct    = editProduct;
 }