예제 #1
0
 public MatrixCellBase(MatrixCellBase rhs, bool readOnly, bool createNewId, IRoutingItemCollection sources, IRoutingItemCollection destinations)
     : base(rhs, readOnly, createNewId)
 {
     m_sources = sources;
     m_destinations = destinations;
 }
예제 #2
0
 public MatrixCellBase(MatrixCellBase rhs) 
     : base(rhs)
 {
     m_sources = rhs.m_sources;
     m_destinations = rhs.m_destinations;
 }