Пример #1
0
        public OutLoanInformation GetLoanInformationByCustomer(double customerID)
        {
            OutLoanInformation loanInformation = new OutLoanInformation();

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