예제 #1
0
 public BodegaController(IBodegaService service, IBodegaMap map, IBitacoraMapper bitacoraMap, IUserService userService)
 {
     this.service     = service;
     this.map         = map;
     this.bitacoraMap = bitacoraMap;
     this.userService = userService;
 }
예제 #2
0
 public TomaController(IKardexMap kardexMap, IUserService userService, ITomaService service, ITomaMap map, IBodegaService bodegaService)
 {
     this.service       = service;
     this.map           = map;
     this.bodegaService = bodegaService;
     this.userService   = userService;
     this.kardexMap     = kardexMap;
 }
예제 #3
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;
 }
예제 #4
0
 public AjusteInventarioController(ITomaService tomaService, IKardexMap kardexMap, IBodegaService bodegaService, IAjusteService service, IAjusteMap map, IUserService userService)
 {
     this.service       = service;
     this.map           = map;
     this.userService   = userService;
     this.bodegaService = bodegaService;
     this.kardexMap     = kardexMap;
     this.tomaService   = tomaService;
 }
 public InventarioController(IMonedaService monedaService, IFamiliaService familiaService, IUnidadService unidadService, IBodegaService bodegaService, IInventarioService service, IInventarioMap map)
 {
     this.service        = service;
     this.map            = map;
     this.bodegaService  = bodegaService;
     this.unidadService  = unidadService;
     this.familiaService = familiaService;
     this.monedaService  = monedaService;
 }
 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;
 }
예제 #7
0
 public GastoController(ITomaService tomaService, IHaciendaService haciendaService, IHaciendaMap haciendaMap, IKardexMap kardexMap, IBodegaService bodegaService, IUserService userService, ICompraMap map, IInventarioService inventarioService, IMonedaService monedaService, ICompraService service, IContactoService contactoService)
 {
     this.service           = service;
     this.contactoService   = contactoService;
     this.inventarioService = inventarioService;
     this.monedaService     = monedaService;
     this.map             = map;
     this.userService     = userService;
     this.bodegaService   = bodegaService;
     this.kardexMap       = kardexMap;
     this.haciendaMap     = haciendaMap;
     this.haciendaService = haciendaService;
     this.tomaService     = tomaService;
 }
예제 #8
0
 public BodegaMap(IBodegaService service)
 {
     this.service = service;
 }