Example #1
0
        public string DeleteCuenta(int id)
        {

            DeleteDAC objDAC = new DeleteDAC();
            if (objDAC.deleteCuenta(id) == true)
                return "Registro eliminado con éxito.";
            else
                return "No se pudo eliminar el regitro.";
        }