/// <summary>
 /// Creates a new instance of the LargeStorageObjectCreator class.
 /// </summary>
 /// <param name="storageClient">The storage service client to use when creating the large object.</param>
 internal LargeStorageObjectCreator(IStorageServiceClient storageClient)
 {
     storageClient.AssertIsNotNull("storageClient","Cannot create a large object with a null storage client.");
     this.StorageClient = storageClient;
 }
 /// <summary>
 /// Creates a new instance of the LargeStorageObjectCreator class.
 /// </summary>
 /// <param name="storageClient">The storage service client to use when creating the large object.</param>
 internal LargeStorageObjectCreator(IStorageServiceClient storageClient)
 {
     storageClient.AssertIsNotNull("storageClient", "Cannot create a large object with a null storage client.");
     this.StorageClient = storageClient;
 }