Example #1
0
        protected PocoFeature(PocoFeature feature)
            : base(feature)
        {
            if (feature == null)
            {
                throw new ArgumentNullException("feature");
            }

            if (feature.Geometry != null)
            {
                _geometry = (IGeometry)feature.Geometry.Clone();
            }
        }
Example #2
0
 public PocoFeatureAttributesProxy(PocoFeature poco)
 {
     _poco = poco;
     _att  = poco.AttributesDefinition;
 }