public System.Threading.Tasks.Task <bool> LogoutAsync(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.LogoutAsync(client));
 }
 public System.Threading.Tasks.Task <bool> DeleteAsync(string id, CLIENT.TodoService.UserClient client, string header)
 {
     return(base.Channel.DeleteAsync(id, client, header));
 }
 public bool Logout(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.Logout(client));
 }
 public System.Threading.Tasks.Task <bool> UpdateAsync(string id, string title, string body, string author, string deadline, string priority, CLIENT.TodoService.UserClient client, string header)
 {
     return(base.Channel.UpdateAsync(id, title, body, author, deadline, priority, client, header));
 }
 public bool Delete(string id, CLIENT.TodoService.UserClient client, string header)
 {
     return(base.Channel.Delete(id, client, header));
 }
 public bool Update(string id, string title, string body, string author, string deadline, string priority, CLIENT.TodoService.UserClient client, string header)
 {
     return(base.Channel.Update(id, title, body, author, deadline, priority, client, header));
 }
 public System.Threading.Tasks.Task <CLIENT.TodoService.TodoModel[]> ListByIdAsync(string id, CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListByIdAsync(id, client));
 }
 public CLIENT.TodoService.TodoModel[] ListById(string id, CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListById(id, client));
 }
 public System.Threading.Tasks.Task <CLIENT.TodoService.TodoModel[]> ListAllAsync(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListAllAsync(client));
 }
 public CLIENT.TodoService.TodoModel[] ListAll(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListAll(client));
 }