public int IngresarPrestamo(Prestamos prestamo) { string validacion = Reglas(prestamo); if (!string.IsNullOrEmpty(validacion)) { throw new PrestamosException(validacion); } else { TransactionResult resultado = PrestamosMapper.Insert(prestamo); if (resultado.IsOk) { RecargarListas(); return(resultado.Id); } else { throw new PrestamosException(resultado.Error); } } }
private void RecargarListas() { _lstTipoPrestamos = LineaPrestamosMapper.GetLineaPrestamos(); _lstPrestamos = PrestamosMapper.GetPrestamos(); }
private void RecargarLista() { _lstPrestamo = PrestamosMapper.TraerPrestamos(); }