public string ingresarDetalle(int idP, int idV, int cant)
        {
            Detalle nuevoProducto = new Detalle(idP, idV, cant);

            using (ServicioDetalle elProducto = new ServicioDetalle())
                return(elProducto.ingresarDetalle(nuevoProducto));
        }