public UnidadesController(IBitacoraMapper bitacoraMap, IUserService userService, IConversionMap conversionMap, IUnidadMap unidadMap, IUnidadService unidadService, IConversionService conversioService)
 {
     this.unidadService    = unidadService;
     this.conversioService = conversioService;
     this.conversionMap    = conversionMap;
     this.unidadMap        = unidadMap;
     this.userService      = userService;
     this.bitacoraMap      = bitacoraMap;
 }
 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;
 }
Пример #4
0
 public UnidadMap(IUnidadService service)
 {
     this.service = service;
 }