public Workflow(string path, string wexflowTempFolder, string xsdPath, RSServers rssrvs) { JobId = 1; _thread = null; WorkflowFilePath = path; WexflowTempFolder = wexflowTempFolder; XsdPath = xsdPath; FilesPerTask = new Dictionary <int, List <FileInf> >(); EntitiesPerTask = new Dictionary <int, List <Entity> >(); RSSrvs = rssrvs; Check(); Load(); }
void LoadRSServers(XDocument xdoc) { RSSrvs = new RSServers(xdoc); }