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;
 }