public void DeleteBlob(string containderName, string key) { var bh = new BlobHelper(); if (bh.Exists(containderName, key)) { bh.DeleteBlob(containderName, key); } }