public void InsertComunicazione(Comunicazioni entity)
 {
     using (IComunicazioniDao dao = this.getDaoContext().DaoImpl.ComunicazioniDao)
     {
         dao.Insert(entity);
     }
 }
 public void InsertComunicazione(long idSottotitolo, long idCanale, bool isToNotify, string mailNotifica, string utenteInserimento, IList <ComAllegato> allegati, string mailSender, string oggetto, string testo, IList <RubricaContatti> refs)
 {
     using (IComunicazioniDao dao = this.getDaoContext().DaoImpl.ComunicazioniDao)
     {
         dao.Insert(idSottotitolo, idCanale, isToNotify, mailNotifica, utenteInserimento, allegati, mailSender, oggetto, testo, refs);
     }
 }