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