Example #1
0
        public async Task <IActionResult> AddBasketProduct(AddBasketProductInput input)
        {
            var result = await _service.AddBasketProductAsync(input);

            return(new OperationActionResult(result));
        }