public IActionResult GetCustomer(int id)
        {
            var customer = _repository.GetCustomer(id);

            if (customer == null)
            {
                return(NotFound());
            }

            return(Ok(customer));
        }