Пример #1
0
    public Tgsegment(int location)
    {
        Clear();

        this.lvlocation = location;
        Load();
        mTGSegmentComparer = new ComparerTGSegmentDataType();
    }
Пример #2
0
    public Tgsegment(int location, int start_coordinate, int end_coordinate, Int16 capacity)
    {
        this.lvlocation = location;
        this.lvstart_coordinate = start_coordinate;
        this.lvend_coordinate = end_coordinate;
        this.lvcapacity = capacity;

        mTGSegmentComparer = new ComparerTGSegmentDataType();
    }
Пример #3
0
 public Tgsegment()
 {
     Clear();
     mTGSegmentComparer = new ComparerTGSegmentDataType();
 }