public InBlobStorage(BlobStorageIntegration integration, string prefix)
 {
     Integration = integration;
     Prefix      = prefix;
 }
 internal BlobStorageImplementation(BlobStorageIntegration integration, Type entityType)
 {
     Integration     = integration;
     this.EntityType = entityType;
 }
 internal BlobStorageImplementation(BlobStorageIntegration integration)
 => Integration = integration;