Exemplo n.º 1
0
 public PagoService(PagoContext context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 public TerceroController(PagoContext context)
 {
     this.terceroService = new TerceroService(context);
 }
Exemplo n.º 3
0
 public PagoController(PagoContext context)
 {
     personaService = new PagoService(context);
 }
Exemplo n.º 4
0
 public PagoController(PagoContext context)
 {
     this.pagoService = new PagoService(context);
 }
Exemplo n.º 5
0
 public PagoService(PagoContext context)
 {
     _context = context;
 }
Exemplo n.º 6
0
 public TerceroService(PagoContext context)
 {
     this.context = context;
 }