This text file contains example code from: Chapter 9 - Service-Orientation with .NET Part I: Service Contracts and Interoperability Book - SOA with .NET & Windows Azure: Realizing Service-Orientation with the Microsoft Platform Series - Prentice Hall Service-Oriented Computing Series from Thomas Erl (www.soabooks.com/community) Certification - These examples are used as part of the Certified SOA .NET Developer curriculum (www.soaschool.com) <programlisting linenumbering="unnumbered">UserBankService serviceAPI = new UserBankService(); serviceAPI.CreateUser(new Core.Models.User() { UserId = Guid.NewGuid(), Address = "MyAdress", FirstName = "John", LastName = "Smith", PhoneNumber = "0332133333", SocSecNumber = "730X29" } );</programlisting> </example>