public PaymentAdviceView GetPaymentAdvice(long id, string paLockKey)
    {
        //never mind about unlocking now

        PaymentAdviceManager pMgr = new PaymentAdviceManager(id, paLockKey);

        return pMgr.GetCurrentPaymentAdvice();
    }
    public PaymentAdviceView RemoveOtherFee(long idPA, long idOF, string paLockKey)
    {
        PaymentAdviceManager pMgr = new PaymentAdviceManager(idPA, paLockKey);

        pMgr.RemoveOtherFee(idOF);

        return pMgr.GetCurrentPaymentAdvice();
    }
Esempio n. 3
0
    public ArrayList GetPaymentAdvice(long id, string paLockKey)
    {
        //never mind about unlocking now

        PaymentAdviceManager pMgr = new PaymentAdviceManager(id,paLockKey);

        ArrayList result = new ArrayList();
        result.Add(pMgr.GetCurrentPaymentAdvice());
        return result;
    }
 public PaymentAdviceView UpdatePaymentAdvice(PaymentAdviceView obj, string lockKey)
 {
     PaymentAdviceManager pMgr = new PaymentAdviceManager(obj.Id, lockKey);
         pMgr.UpdatePaymentAdvice(obj);
         return pMgr.GetCurrentPaymentAdvice();
 }