public Customer GetById(int id)
        {
            var customer = _context.GetCustomer(id);

            return(customer);
        }