Ejemplo n.º 1
0
        public int getCustomerIDByCustomerName(string firstName, string lastName)
        {
            int result = 0;

            try
            {
                result = accessor.returnCustomerIDByCustomerName(firstName, lastName);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(result);
        }