Beispiel #1
0
        /*
         * public void deletePayment(Payment payment)
         * {
         *  try {
         *      Mapper.Instance().BeginTransaction();
         *      this.paymentDao.deletePayment(payment);
         *      filesService.deleteRealFilesAndDataByFileMasterIdx(payment.idx);
         *      Mapper.Instance().CommitTransaction();
         *  }
         *  catch (Exception e)
         *  {
         *      Mapper.Instance().RollBackTransaction();
         *  }
         * }
         */

        public IList <Payment> findAll(Payment payment)
        {
            return(paymentDao.findAll(payment));
        }