コード例 #1
0
 public static void Delete(int id)
 {
     JsonWebService<Grupo> ws = new JsonWebService<Grupo>();
     ws.Delete(id);
 }
コード例 #2
0
 public static Grupo Find(int id)
 {
     JsonWebService<Grupo> ws = new JsonWebService<Grupo>();
     return ws.Find(id);
 }
コード例 #3
0
 public static void Update(Grupo grupo)
 {
     JsonWebService<Grupo> ws = new JsonWebService<Grupo>();
     ws.Update(grupo);
 }
コード例 #4
0
 public static List<Grupo> FindAll()
 {
     JsonWebService<Grupo> ws = new JsonWebService<Grupo>();
     return ws.FindAll();
 }