public static Blobber CreateBlobber() { BlobberRepository repository = new BlobberRepository(); repository.StartEdit(); Blobber b = repository.Create(); b.BlobberId = BLOBBER_ID; IFeatureLayer layer = new FeatureLayerClass(); layer.Name = BLOBBER_VALUE_1; IPropertySet properties = new PropertySetClass(); properties.SetProperty("VALUE1", BLOBBER_VALUE_1); properties.SetProperty("VALUE2", BLOBBER_VALUE_2); properties.SetProperty("VALUE3", BLOBBER_VALUE_3); b.Properties = properties; b.Store(); repository.StopEdit(true); return(b); }
public static int CreateAndGetOID() { BlobberRepository repository = new BlobberRepository(); repository.StartEdit(); Blobber b = repository.Create(); b.BlobberId = BLOBBER_ID; IPropertySet properties = new PropertySetClass(); properties.SetProperty("VALUE1", BLOBBER_VALUE_1); properties.SetProperty("VALUE2", BLOBBER_VALUE_2); properties.SetProperty("VALUE3", BLOBBER_VALUE_3); b.Properties = properties; b.Store(); repository.StopEdit(true); return(b.ObjectId); }