Beispiel #1
0
 public string FindByStatus(string status)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("status", "=", status);
     return(Service.Get());
 }
Beispiel #2
0
 public string FindByName(string name)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("name", "=", name);
     return(Service.Get());
 }
Beispiel #3
0
 public string FindByType(string type)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("type", "=", type);
     return(Service.Get());
 }
Beispiel #4
0
 public string FindByEmail(string email)
 {
     SetUrl(Methods.Find);
     Service.SetFilter("email", "=", email);
     return(Service.Get());
 }