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