public RequisicionController(ITomaService tomaService, IKardexMap kardexMap, IDepartamentoService depaService, IRequisicionService service, IRequisicionMap map)
 {
     this.service     = service;
     this.map         = map;
     this.depaService = depaService;
     this.kardexMap   = kardexMap;
     this.tomaService = tomaService;
 }
 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;
 }
Exemple #3
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 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;
 }
Exemple #5
0
 public TomaMap(IAjusteService ajusteService, ITomaService service, IStringLocalizer <SharedResources> _lb)
 {
     this.service       = service;
     this._lb           = _lb;
     this.ajusteService = ajusteService;
 }