Exemple #1
0
 def deleteAccountType(self, id):
     accounttype = AccountService().getAccountType(id)
     if accounttype:
         accounttype.delete()
Exemple #2
0
 def deleteCurrency(self, id):
     currency = AccountService().getCurrency(id)
     if currency:
         currency.delete()