Example #1
0
 public System.Threading.Tasks.Task <bool> LogoutAsync(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.LogoutAsync(client));
 }
Example #2
0
 public System.Threading.Tasks.Task <bool> DeleteAsync(string id, CLIENT.TodoService.UserClient client, string header)
 {
     return(base.Channel.DeleteAsync(id, client, header));
 }
Example #3
0
 public bool Logout(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.Logout(client));
 }
Example #4
0
 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));
 }
Example #5
0
 public bool Delete(string id, CLIENT.TodoService.UserClient client, string header)
 {
     return(base.Channel.Delete(id, client, header));
 }
Example #6
0
 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));
 }
Example #7
0
 public System.Threading.Tasks.Task <CLIENT.TodoService.TodoModel[]> ListByIdAsync(string id, CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListByIdAsync(id, client));
 }
Example #8
0
 public CLIENT.TodoService.TodoModel[] ListById(string id, CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListById(id, client));
 }
Example #9
0
 public System.Threading.Tasks.Task <CLIENT.TodoService.TodoModel[]> ListAllAsync(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListAllAsync(client));
 }
Example #10
0
 public CLIENT.TodoService.TodoModel[] ListAll(CLIENT.TodoService.UserClient client)
 {
     return(base.Channel.ListAll(client));
 }