Пример #1
0
        public OutLoanDetail GetLoanDetailList(double folderNumber)
        {
            OutLoanDetail loanDetail = new OutLoanDetail();

            try
            {
                RequisitionDAO dao = new RequisitionDAO();
                loanDetail = dao.GetLoanDetailList(folderNumber);
            }
            catch (Exception ex)
            {
                //escribir en el log
                LogHelper.WriteLog("Models", "MangerRequisition", "GetLoanDetailList", ex, "");
            }
            return(loanDetail);
        }