예제 #1
0
 public string FindByStatus(string status)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("status", "=", status);
     return(Service.Get());
 }
예제 #2
0
파일: Plan.cs 프로젝트: gio-ia/testqvo
 public string FindByName(string name)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("name", "=", name);
     return(Service.Get());
 }
예제 #3
0
파일: Event.cs 프로젝트: gio-ia/testqvo
 public string FindByType(string type)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("type", "=", type);
     return(Service.Get());
 }
예제 #4
0
 public string FindByEmail(string email)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("email", "=", email);
     return(Service.Get());
 }