Exemplo n.º 1
0
 public WorkFlow(string name, string archiveLocation)
 {
     Log("Starting flow " + name);
     directory = CreateNewDirectory(name, archiveLocation);
     graph     = new GraphWriter(string.Format(@"{0}\graph.dot", directory));
     flow      = new FlowWriter(string.Format(@"{0}\flow.dot", directory));
 }
Exemplo n.º 2
0
 public WorkFlow(string name, string archiveLocation)
 {
     Log("Starting flow " + name);
     directory = CreateNewDirectory(name, archiveLocation);
     graph = new GraphWriter(string.Format(@"{0}\graph.dot", directory));
     flow = new FlowWriter(string.Format(@"{0}\flow.dot", directory));
 }