예제 #1
0
        public static async void GelAllDipendentiListAsync()
        {
            DipendenteRequest dr = new DipendenteRequest()
            {
                Ok = 1
            };
            DipendentiReply drList = await service.GetAllDipendentiListAsync(dr);

            foreach (var dip in drList.ListaDipendenti)
            {
                Console.WriteLine(dip.Comune + " " + dip.Nominativo);
            }
        }