Exemple #1
0
        public async Task <IActionResult> DeleteProduct(Guid productId)
        {
            await _menuAppService.DeleteProductAsync(productId);

            return(Ok());
        }