/// <summary> /// Add a new load to this model, if it does not already exist within it /// </summary> /// <param name="load">The load to be added</param> /// <returns>True if the load could be added, false if it had already been added to the model.</returns> public bool Add(Load load) { return(Loads.TryAdd(load)); }