Esempio n. 1
0
 public bool delete(Operation operation)
 {
     return(Connexion.delete(tableName, champsWhere, new object[] { operation.IdOperation }));
 }
Esempio n. 2
0
 public bool delete(Compte compte)
 {
     return(Connexion.delete(tableName, champsWhere, new object[] { compte.IdCompte }));
 }
Esempio n. 3
0
 public bool delete(Client client)
 {
     return(Connexion.delete(tableName, champsWhere, new object[] { client.IdClient }));
 }
Esempio n. 4
0
 public bool delete(TypeCarte typeCarte)
 {
     return(Connexion.delete(tableName, champsWhere, new object[] { typeCarte.IdTypeCarte }));
 }