コード例 #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Callign Service");
            employeeProxy.EmpServiceClient obj = new EmpServiceClient();
            employeeProxy.Employee         emp = new employeeProxy.Employee();
            emp.FirstName = "Shirley";
            emp.LastName  = "Teens";
            emp.Gender    = "Female";

            employeeProxy.Employee empObj2 = obj.GetDataUsingDataContract(emp);
            Console.WriteLine("Result obtained from service as below");
            Console.WriteLine(empObj2.Details);
            Console.WriteLine("Oh I am done");
            Console.WriteLine("To Stop hit any key");
            Console.ReadLine();
        }