public bool EditPost(string postid, string username, string password, MetaPost post, bool publish) { _logger.LogInformation($"MetaWeblog:EditPost is called"); return(_provider.EditPost(postid, username, password, post, publish)); }
public string AddPost(string blogid, string username, string password, MetaPost post, bool publish) { _logger.LogInformation($"MetaWeblog:AddPost is called"); return(_provider.AddPost(blogid, username, password, post, publish)); }