/// <summary>
 /// Asynchronously update the <see cref="BlogPostFile" /> in the system.
 /// </summary>
 /// <param name="blogPostFile">Resource instance.</param>
 /// <returns>True if <see cref="BlogPostFile" /> is successfully updated, false otherwise.</returns>
 public virtual Task <bool> UpdateAsync(BlogPostFile blogPostFile)
 {
     return(UpdateAsync <BlogPostFile>(blogPostFile));
 }
 /// <summary>
 /// Asynchronously insert the <see cref="BlogPostFile" /> into the system.
 /// </summary>
 /// <param name="blogPostFile">Resource instance.</param>
 /// <returns>Newly created <see cref="BlogPostFile" /> .</returns>
 public virtual Task <BlogPostFile> InsertAsync(BlogPostFile blogPostFile)
 {
     return(InsertAsync <BlogPostFile>(blogPostFile));
 }