Example #1
0
        public async Task <IActionResult> GetProductsAsync()
        {
            var products = await _repo.GetAllProducts();

            return(Ok(products));
        }