public async Task <IActionResult> Buy([FromBody] BuyProductViewModel command)
        {
            await _shopService.BuyProductAsync(command.ProductId, LoggedInUser);

            return(Ok());
        }