■ 계약 상속을 통한 버전 관리를 사용하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
using System.ServiceModel; /// <summary> /// 상점 인터페이스 /// </summary> [ServiceContract(Namespace="http://company.com/bookstore")] public interface IBookStore { //////////////////////////////////////////////////////////////////////////////////////////////////// Method #region 주문하기 - Order(userID, isbn, amount) /// <summary> /// 주문하기 /// </summary> /// <param name="userID">사용자 ID</param> /// <param name="isbn">ISBN</param> /// <param name="amount">수량</param> /// <returns>주문 ID</returns> [OperationContract] int Order(string userID, string isbn, int amount); #endregion } /// <summary> /// 상점 2 인터페이스 /// </summary> [ServiceContract(Name="IBookStore", Namespace="http://company.com/bookstore/2015/11")] public interface IBookStore2 : IBookStore { //////////////////////////////////////////////////////////////////////////////////////////////////// Method #region 주문하기 2 - Order2(name, socialID, isbn, amount) /// <summary> /// 주문하기 2 /// </summary> /// <param name="name">서명</param> /// <param name="socialID">사회 보장 번호</param> /// <param name="isbn">ISBN</param> /// <param name="amount">수량</param> /// <returns>주문 ID</returns> [OperationContract] int Order2(string name, string socialID, string isbn, int amount); #endregion } |