public Guid Create(XmlDTO entity) { var container = BlobStorageHelper.GetBlobContainerFromConfiguration(ContainerConnectionStringName); CloudBlockBlob blockBlob = container.GetBlockBlobReference(entity.Id.ToString()); blockBlob.UploadText(entity.Document.ToString()); return(entity.Id); }
public void Update(XmlDTO entity) { Create(entity); }
public void Delete(XmlDTO entity) { throw new NotImplementedException(); }