Beispiel #1
0
        public Boolean existe(String nombre)
        {
            Boolean         siExiste = false;
            InterpreteDatos datos    = new InterpreteDatos();

            if (datos.SeleccionarPorIdInterprete(nombre).Count > 0)
            {
                siExiste = true;
            }
            else
            {
                siExiste = false;
            }
            return(siExiste);
        }
Beispiel #2
0
        public void InsertarInterprete(Interprete interprete)
        {
            InterpreteDatos datos = new InterpreteDatos();

            datos.Insertar(interprete);
        }
Beispiel #3
0
        public List <Interprete> ObtenerTodosInterprete()
        {
            InterpreteDatos datos = new InterpreteDatos();

            return(datos.SeleccionarTodosInterprete());
        }