コード例 #1
0
        public Customer RetrieveCustomerByID(int?id)
        {
            Customer _customer = null;

            try
            {
                _customer = CustomerAccessor.RetrieveCustomerWithID(id);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(_customer);
        }