コード例 #1
0
 //_______________________________________________________________________________________________________________________
 public OutputSet(long id, string name, string detail, string type, ManagementAgentInfo destinationManagementAgent)
 {
     Table  = "outputset";
     Alias  = "OutputSet";
     Id     = id;
     Name   = name;
     Detail = detail;
     Type   = type;
     DestinationManagementAgent = destinationManagementAgent;
 }
コード例 #2
0
 //_______________________________________________________________________________________________________________________
 public Test(long id, string name, string detail, Config config, Script script, InputSet inputSet, List <OutputSet> outputSets, ManagementAgentInfo sourceManagementAgent, bool delta, bool commit)
 {
     Table                 = "test";
     Alias                 = "Test";
     Id                    = id;
     Name                  = name;
     Detail                = detail;
     Config                = config;
     Script                = script;
     InputSet              = inputSet;
     OutputSets            = outputSets;
     SourceManagementAgent = sourceManagementAgent;
     Delta                 = delta;
     Commit                = commit;
 }