Esempio n. 1
0
 public Graphic(GraphicTypes _graphicType, string _uniqueid, IGeometry _geometry, TabBaseViewModel _model, bool _isTemp = false)
 {
     GraphicType = _graphicType;
     UniqueId    = _uniqueid;
     Geometry    = _geometry;
     IsTemp      = _isTemp;
     ViewModel   = _model;
 }
 public Graphic(GraphicTypes _graphicType, string _uniqueid, IGeometry _geometry, TabBaseViewModel _model, bool _isTemp = false, IDictionary <string, System.Object> attributes = null)
 {
     GraphicType = _graphicType;
     UniqueId    = _uniqueid;
     Geometry    = _geometry;
     IsTemp      = _isTemp;
     ViewModel   = _model;
     Attributes  = attributes;
 }