using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Mesnac.Basic.Service { /// /// 操作命令接口 /// public interface ICommand { /// /// 命令执行方法,对应恢复操作 /// void execute(); /// /// 命令撤销方法 /// void undo(); } }