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