public void PresentarPagosDetalle() { OPagoLista listaPagos = servicioPago.ObtenerPagosDetalle(); if (listaPagos.Correcto) { ImostrarPagosDetalle.MostrarPagosDetalle(listaPagos.pagosDetalleLista); } else { ImostrarPagosDetalle.ErrorPagosDetalle(string.Format("{0}", listaPagos.Excepcion.Message)); } }
public void PresentarPagoPorAlumno() { OPagoLista listadoPagos = servicioPago.ObtenerPagosDetalle(); CPago cpago = new CPago(); cpago._Filtro = ibusqueda.FiltroNomre; OPagoLista listado = servicioPago.ObtenerPagosPorAlumno(cpago); if (listado.Correcto) { if (cpago._Filtro == null) { ibusqueda.MostrarPagosPorAlumno(listadoPagos.pagosDetalleLista); } else { ibusqueda.MostrarPagosPorAlumno(listado.detalles); } } else { ibusqueda.ErrorPagosPorAlumno(string.Format("{0}", listado.Excepcion.Message)); } }