1234567891011121314151617181920212223242526272829303132 |
- /* ==============================================================================
- * 功能描述:RevitCmdExecutor
- * 创 建 者:Garrett
- * 创建日期:2019/4/16 11:46:37
- * ==============================================================================*/
- using System;
- using System.Collections.Generic;
- using System.Windows.Forms;
- namespace Client.Start
- {
- /// <summary>
- /// RevitCmdExecutor
- /// </summary>
- public class RevitCmdExecutor : IRevitCommandExcutor
- {
- public string ExecuteCmd(string revitCmd, string param, HashSet<string> filePathList)
- {
- //由revitCmd生成实体类
- //实体类传入参数、参考楼层列表
- //执行方法,返回执行结果
- Console.WriteLine("准备执行命令");
- string msg = null;
- MessageBox.Show("命令执行完成 ");
- return msg;
- }
-
- }
- }
|