示例#1
0
        }//End actualizar

        public static VOCliente ConsultarClientePorId(string idCliente)
        {
            VOCliente cliente = null;

            try
            {
                cliente = DALCliente.ConsultarClientePorId(int.Parse(idCliente));
            }
            catch (Exception ex)
            {
                throw new ArgumentException("Error al consultar el registro de persona" + ex.Message);
            }
            return(cliente);
        }