Ejemplo n.º 1
0
 private void SaveFeatures(Collection <Feature> features, FeatureSource featureSource)
 {
     featureSource.BeginTransaction();
     foreach (var feature in features)
     {
         featureSource.AddFeature(feature);
     }
     featureSource.CommitTransaction();
 }
Ejemplo n.º 2
0
 private void SaveFeatures(Collection<Feature> features, FeatureSource featureSource)
 {
     featureSource.BeginTransaction();
     foreach (var feature in features)
     {
         featureSource.AddFeature(feature);
     }
     featureSource.CommitTransaction();
 }