Esempio n. 1
0
        public bool ExisteCargo(int id)
        {
            Datos.Cargos oDatos;

            try
            {
                oDatos = new Datos.Cargos();
                return oDatos.ExisteCargo(id);
            }

            finally
            {
                oDatos = null;
            }
        }