Ejemplo n.º 1
0
 public PreciosController(IPreciosService service, IPreciosMap map, IPrecioCatalogoService precioCatalogoService, IInventarioService inventarioService)
 {
     this.service = service;
     this.map     = map;
     this.precioCatalogoService = precioCatalogoService;
     this.inventarioService     = inventarioService;
 }
Ejemplo n.º 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;
 }
 public InventarioController(IStringLocalizer <SharedResources> sharedLocalizer, IHostingEnvironment hostingEnvironment, IMonedaService monedaService, IFamiliaService familiaService, IFamiliaOnlineService familiaOnlineService, IUnidadService unidadService, IBodegaService bodegaService, IInventarioService service, IInventarioMap map, IPreciosService preciosService, IPrecioCatalogoService precioCatalogoService)
 {
     this.service               = service;
     this.map                   = map;
     this.bodegaService         = bodegaService;
     this.unidadService         = unidadService;
     this.familiaService        = familiaService;
     this.familiaOnlineService  = familiaOnlineService;
     this.monedaService         = monedaService;
     this.hostingEnvironment    = hostingEnvironment;
     this.preciosService        = preciosService;
     this.precioCatalogoService = precioCatalogoService;
 }
Ejemplo n.º 4
0
 public PreciosMap(IPreciosService service)
 {
     this.service = service;
 }
Ejemplo n.º 5
0
 public PrecioCatalogoController(IPrecioCatalogoService service, IPrecioCatalogoMap map, IPreciosService preciosService)
 {
     this.service        = service;
     this.map            = map;
     this.preciosService = preciosService;
 }
 //controlador
 public TipoClienteController(IPreciosService precioService, ITipoClienteService ITipoClientes, ITipoClienteMapper ITipoMapper)
 {
     this.service       = ITipoClientes;
     this.map           = ITipoMapper;
     this.precioService = precioService;
 }