123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using TellerSystem.Communication;
- using TellerSystem.Contract.Entry;
-
- namespace TellerSystem.Contract.Contracts
- {
- /// <summary>
- /// 提交契约
- /// </summary>
- public interface ISubmitContract
- {
- /// <summary>
- /// 提交准备
- /// </summary>
- bool PreviewSubmitting(out Message message);
- /// <summary>
- /// 提交入口
- /// </summary>
- SubmitEntry SubmitEntry { get; }
- }
- }
|