Exemple #1
0
 public CajaController(IPuntoVentaService pvService, ICajaService Service, ICajaMap map, IUserService userService, IMonedaService monedaService)
 {
     _Service       = Service;
     _Map           = map;
     _UserService   = userService;
     _MonedaService = monedaService;
     _PVService     = pvService;
 }
Exemple #2
0
 public PuntoVentaController(IPreciosService precioService, IPuntoVentaService service, IPuntoVentaMap map, IMonedaService monedaService, IContactoService contactoService, IBodegaService bodegaService)
 {
     this.service         = service;
     this.map             = map;
     this.monedaService   = monedaService;
     this.contactoService = contactoService;
     this.bodegaService   = bodegaService;
     this.precioService   = precioService;
 }
Exemple #3
0
 public FacturaController(IFlujoCategoriaService flujoService, ICajaMovimientoMap cajaMovMap, IMovimientoService movService, IPuntoVentaService pvService, IFacturaMap map, IFacturaService service, IUserService userService, IContactoService contactoService)
 {
     this.map             = map;
     this.service         = service;
     this.userService     = userService;
     this.contactoService = contactoService;
     this.pvService       = pvService;
     this.movService      = movService;
     this.cajaMovMap      = cajaMovMap;
     this.flujoService    = flujoService;
 }
Exemple #4
0
 public PuntoVentaMap(IPuntoVentaService service)
 {
     this.service = service;
 }