Пример #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));
        }
Пример #2
0
 public GatherFluent(Graph.Gather gather)
 {
     _gather = gather;
 }