Ejemplo n.º 1
0
        public async Task <IActionResult> AddProductsToCart([FromBody] CartRequest model)
        {
            var res = await store.AddProductsToCart(model);

            return(Ok(res));
        }