/// <summary>
 /// Uploads a file to azure as a blob.
 /// </summary>
 /// <param name="details">
 /// Details of the file which has to be uploaded to azure.
 /// </param>
 /// <returns>
 /// True if the file is uploaded successfully; otherwise false.
 /// </returns>
 public bool UploadFile(DataDetail details)
 {
     details.CheckNotNull();
     return UploadBlobContent(details, Constants.ContainerName);
 }
 /// <summary>
 /// Checks a file in azure.
 /// </summary>
 /// <param name="details">
 /// Details of the file which has to be checked.
 /// </param>
 /// <returns>
 /// True if the file is found successfully; otherwise false.
 /// </returns>
 public bool CheckIfExists(DataDetail details)
 {
     details.CheckNotNull();
     return ExistsBlobContent(details, Constants.ContainerName);
 }