Exemple #1
0
        public List <TipoClienteBE> ListarTipoClientes()
        {
            ClienteDA oClienteDA = new ClienteDA();

            try
            {
                return(oClienteDA.ListarTipoClientes());
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                oClienteDA = null;
            }
        }