Esempio n. 1
0
        static void Main(string[] args)
        {
            c = new GeneroServiceClient();

            c.BeginGetFirst10(GetFirst10Completed, null);

            c.BeginGetById(1, GetByIdCompleted, null);
            c.BeginGetById(10, GetByIdCompleted, null);
            c.BeginGetById(100, GetByIdCompleted, null);

            Console.ReadKey();
        }