示例#1
0
        public void TestImportAction(ActionImport.DataType type, string filePath = null)
        {
            var action = new ActionImport(type)
            {
                FilePath = filePath
            };

            DoAction(action.DoStartupAction);
        }
示例#2
0
 private void Import(ActionImport.DataType type)
 {
     DoAction(new ActionImport(type).DoStartupAction);
 }
示例#3
0
 public void TestImportAction(ActionImport.DataType type, string filePath = null)
 {
     var action = new ActionImport(type) {FilePath = filePath};
     DoAction(action.DoStartupAction);
 }