Ejemplo n.º 1
0
        public static GatherFluent Gather(this IScriptContext context, string name)
        {
            var gather = new Graph.Gather {
                Name = name
            };

            GraphManager.AddGather(gather);

            return(new GatherFluent(gather));
        }
Ejemplo n.º 2
0
 public GatherFluent(Graph.Gather gather)
 {
     _gather = gather;
 }