Beispiel #1
0
 public static bool UpdateDirectDebit(DirectDebitClass debit)
 {
     Boolean flag = false;
        try
        {
        Icontext objinter = new BALDirectDebit();
        flag = objinter.UpdateRecord(debit);
        }
        catch (Exception ex)
        {
        throw;
        }
        return flag;
 }