public IActionResult Get(int id)
        {
            if (id == null)
            {
                return(BadRequest());
            }

            var result = catalogueSvc.GetProduct(id);

            if (result != null)
            {
                return(Ok(result));
            }

            return(NotFound());
        }