예제 #1
0
 public bool UpdateClientGrounp(ClientGrounp cg)
 {
     int i = 0;
     i = new SqlClientGrounpProvider().UpdateClientGrounp(cg);
     if (i != 0)
         return true;
     else
         return false;
 }
예제 #2
0
 public static  bool AddClientGrounp(ClientGrounp cg)
 {
     int i = 0;
     i=new SqlClientGrounpProvider().AddClientGrounp(cg);
     if (i != 0)
         return true;
     else
         return false;
 }