Пример #1
0
        internal static string ToString(eStampa s)
        {
            if (s == eStampa.PEI)
            {
                return("PEI");
            }
            else if (s == eStampa.SchedaIscrizione)
            {
                return("Scheda iscrizione");
            }
            else if (s == eStampa.SchedaPrimoContatto)
            {
                return("Scheda primo contatto");
            }
            else if (s == eStampa.SchedaValutazionePercorsoFormativo)
            {
                return("Scheda percorso formativo");
            }

            return("");
        }
Пример #2
0
 internal static string PercorsoStampa(eStampa stampa)
 {
     return(Path.GetDirectoryName(Application.ExecutablePath) + @"\Stampe\" + stampa + ".docx");
 }