Clusterizator.Krab.GraphManager.GraphManager C# (CSharp) Method

GraphManager() public method

Initializes a new instance of the GraphManager class.
public GraphManager ( List connections, List elements ) : System.Collections.Generic
connections List /// The connections. ///
elements List /// The elements. ///
return System.Collections.Generic
        public GraphManager(List<Connection> connections, List<GraphElement> elements)
        {
            Connections = connections;
            Elements = elements;
        }