Ejemplo n.º 1
0
    public void redactar(int id_emisor_p, String asunto_p, String texto_p, int Id_hilo_p)
    {
        id_emisor = id_emisor_p;
        Fecha     = DateTime.Now;
        asunto    = asunto_p;
        texto     = texto_p;
        id_hilo   = Id_hilo_p;
        Almacenaje almacenaje = new Almacenaje();

        almacenaje.insertaMensajeForo(id_emisor, Fecha, asunto, texto, id_hilo);
    }