Пример #1
0
    public void redactarNuevoHilo(int id_emisor_p, String asunto_p, String texto_p)
    {
        id_emisor = id_emisor_p;
        Fecha     = DateTime.Now;
        asunto    = asunto_p;
        texto     = texto_p;
        Almacenaje almacenaje = new Almacenaje();

        almacenaje.inserNuevoHilo(id_emisor_p, DateTime.Now, asunto_p, texto_p);
    }