Example #1
0
        public EntClsLoan fineLoan(int id)
        {
            CntClsLoan cnt_loan = new CntClsLoan();

            return(cnt_loan.searchLoan(id));
        }
Example #2
0
        public int deleteLoan(int id)
        {
            CntClsLoan cnt_loan = new CntClsLoan();

            return(cnt_loan.deleteLoan(id));
        }
Example #3
0
        public int insertLoan(string dateLoan, string dateLimit, string identificationCard, string code)
        {
            CntClsLoan cnt_loan = new CntClsLoan();

            return(cnt_loan.insertLoan(dateLoan, dateLimit, identificationCard, code));
        }
Example #4
0
        public List <EntClsLoan> checkForCodeLoan(string code)
        {
            CntClsLoan cnt_loan = new CntClsLoan();

            return(cnt_loan.checkForCodeLoan(code));
        }