Esempio n. 1
0
        private string RetornaSetor(EnSetor setor)
        {
            switch (setor)
            {
            case EnSetor.Administrativo:
                return("Administrativo");

            case EnSetor.Informatica:
                return("Informática");

            case EnSetor.Recepcao:
                return("Receção");
            }
            return(null);
        }
Esempio n. 2
0
 private string RetornaSetor(EnSetor setor)
 {
     return(setor.ToString());
 }