Exemplo n.º 1
0
        static void Main()
        {
            SimpleServiceClient client = new SimpleServiceClient();

            DateTime testDate = DateTime.Now;

            Console.WriteLine(client.GetDayOfWeekInBulgarian(testDate));
            // Use the 'client' variable to call operations on the service.

            // Always close the client.
            client.Close();
        }