Exemplo n.º 1
0
        public int AddCategory(string key, string username, string password, NewCategory category)
        {
            EnsureUser(username, password).Wait();

            // We don't store these, just query them from the list of stories so don't do anything
            return(1);
        }
Exemplo n.º 2
0
 public int AddCategory(string key, string username, string password, NewCategory category)
 {
     _logger.LogInformation($"MetaWeblog:AddCategory is called");
     return(_provider.AddCategory(key, username, password, category));
 }