This text file contains example code from: Chapter 11 - Service-Orientation with .NET Part III: Reusability and Agnostic Service Models 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">[ServiceContract (Name = "Notification", Namespace = "http://schemas.standardmold.com/ enterprise/services/v1") ] public interface INotificationReceiver { [OperationContract] NotificationResponse NotifyBySms (NotificationMessage message); [OperationContract] NotificationResponse GetNotificationStatus (Guid NotificationId); }</programlisting> </example>