예제 #1
0
 public System.Threading.Tasks.Task LogoutAsync(SOP_WCF.UserClient client)
 {
     return(base.Channel.LogoutAsync(client));
 }
예제 #2
0
 public System.Threading.Tasks.Task DeleteAsync(int id, SOP_WCF.UserClient client)
 {
     return(base.Channel.DeleteAsync(id, client));
 }
예제 #3
0
 public void Logout(SOP_WCF.UserClient client)
 {
     base.Channel.Logout(client);
 }
예제 #4
0
 public System.Threading.Tasks.Task UpdateAsync(int id, string title, string body, string author, string deadline, string priority, SOP_WCF.UserClient client)
 {
     return(base.Channel.UpdateAsync(id, title, body, author, deadline, priority, client));
 }
예제 #5
0
 public void Delete(int id, SOP_WCF.UserClient client)
 {
     base.Channel.Delete(id, client);
 }
예제 #6
0
 public System.Threading.Tasks.Task InsertAsync(string title, string body, string author, string deadline, string priority, SOP_WCF.UserClient client)
 {
     return(base.Channel.InsertAsync(title, body, author, deadline, priority, client));
 }
예제 #7
0
 public void Update(int id, string title, string body, string author, string deadline, string priority, SOP_WCF.UserClient client)
 {
     base.Channel.Update(id, title, body, author, deadline, priority, client);
 }
예제 #8
0
 public void Insert(string title, string body, string author, string deadline, string priority, SOP_WCF.UserClient client)
 {
     base.Channel.Insert(title, body, author, deadline, priority, client);
 }
예제 #9
0
 public System.Threading.Tasks.Task <SOP_WCF.TodoModel[]> ListByIdAsync(string id, SOP_WCF.UserClient client)
 {
     return(base.Channel.ListByIdAsync(id, client));
 }
예제 #10
0
 public SOP_WCF.TodoModel[] ListById(string id, SOP_WCF.UserClient client)
 {
     return(base.Channel.ListById(id, client));
 }
예제 #11
0
 public System.Threading.Tasks.Task <SOP_WCF.TodoModel[]> ListAllAsync(SOP_WCF.UserClient client)
 {
     return(base.Channel.ListAllAsync(client));
 }
예제 #12
0
 public SOP_WCF.TodoModel[] ListAll(SOP_WCF.UserClient client)
 {
     return(base.Channel.ListAll(client));
 }