Exemplo n.º 1
0
        public Customer getCustomerByID(int customerID)
        {
            Customer customer;

            try
            {
                customer = accessor.returnCustomerByID(customerID);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(customer);
        }