/// <summary>
 /// Initializes a new instance of the type
 /// </summary>
 /// <param name="source">A lease that is used for the source of the contents</param>
 /// <param name="blob">The BLOB that is used for managing ownership</param>
 public AzureBlobLease(AzureBlobLease source, CloudBlockBlob blob) : base(source)
 {
     Blob    = blob;
     IsOwned = blob.Properties.LeaseState == LeaseState.Leased;
 }
 /// <summary>
 /// Initializes a new instance of the type
 /// </summary>
 /// <param name="source">A lease that is used for the source of the contents</param>
 public AzureBlobLease(AzureBlobLease source) : base(source)
 {
     Blob    = source.Blob;
     IsOwned = source.IsOwned;
 }