摘要: 通过LiveWriter提交 阅读全文
posted @ 2013-10-11 16:32 feidaochuanqing 阅读(98) 评论(0) 推荐(0) 编辑
摘要: -------------------ICustomer(接口类)------------------------------------[ServiceContract] public interface ICustomer { [OperationContract] [TransactionFlow(TransactionFlowOption.Allowed)] int RegisterCustomer(Customer customer);//注册一个客户 }------------------IRental(接口类)-----... 阅读全文
posted @ 2013-10-11 13:50 feidaochuanqing 阅读(215) 评论(0) 推荐(0) 编辑
摘要: -------------interface---------------------- /// /// 租赁合同管理 /// [ServiceContract] public interface IRental { [OperationContract] [FaultContract(typeof(RentalRegistFault))] string RegisterCarRental(RentalRegistraction rentalRegistraction);//注册一个租赁合同 [OperationContract] [FaultContract(typeof(RentalR.. 阅读全文
posted @ 2013-10-11 10:39 feidaochuanqing 阅读(265) 评论(0) 推荐(0) 编辑