コード例 #1
0
 public ServicioPago(IPagoRepositorio IPR)
 {
     IpagoR = IPR;
 }
コード例 #2
0
 public PresentadorPagosDetalle(IPagoRepositorio IpagoR, IMostrarPagosDetalle vista)
 {
     servicioPago         = new ServicioPago(IpagoR);
     ImostrarPagosDetalle = vista;
 }
コード例 #3
0
 public PresentadorPago(IPagoRepositorio Ipr, IAgregarPago vista)
 {
     servicioPago = new ServicioPago(Ipr);
     IagregarPago = vista;
 }
コード例 #4
0
 public PresentadorPagosPorAlumno(IPagoRepositorio ipago, IBuscarPagosPorAlumno vista)
 {
     servicioPago = new ServicioPago(ipago);
     ibusqueda    = vista;
 }