public void DeleteBlog(BlogEntity blog)
 {
     throw new NotImplementedException();
 }
 public void CreateBlog(BlogEntity blog)
 {
     blogRepository.Create(blog.ToDalBlog());
     uow.Commit();
 }