Esempio n. 1
0
 public ProveedorController(IProveedorService clienteService,
                            IDocumentoIdentidadService docIdentidadService, ITipoProveedorService tipoProveedorService,
                            IPaisService paisService, IDepartamentoService departamentoService,
                            IProvinciaService provinciaService, IDistritoService distritoService,
                            IFormaVentaService formaVentaService, IContactoService contactoService,
                            IProveedorContactoService proveedoContactoService, IDireccionService direccionService,
                            IPersonalService personalService, IMonedaService monedaService, ISunatClient sunatClient,
                            ITipoPrecioService tipoPrecioService, IAreaService areaService)
 {
     _clienteService           = clienteService;
     _docIdentidadService      = docIdentidadService;
     _tipoProveedorService     = tipoProveedorService;
     _paisService              = paisService;
     _departamentoService      = departamentoService;
     _provinciaService         = provinciaService;
     _distritoService          = distritoService;
     _formaVentaService        = formaVentaService;
     _contactoService          = contactoService;
     _proveedorContactoService = proveedoContactoService;
     _direccionService         = direccionService;
     _personalService          = personalService;
     _monedaService            = monedaService;
     _tipoPrecioService        = tipoPrecioService;
     this.sunatClient          = sunatClient;
     this.areaService          = areaService;
 }
Esempio n. 2
0
 public EmpleadoController(ILogger <EmpleadoController> logger, IEmpleadoService empleadoService, IPuestoService puestoService, IDepartamentoService departamentoService)
 {
     this.logger          = logger;
     _empleadoService     = empleadoService;
     _puestoService       = puestoService;
     _departamentoService = departamentoService;
 }
 public DepartamentosController(IDepartamentoRepository departamentoRepository, IMapper mapper
                                , IDepartamentoService departamentoService)
 {
     _departamentoRepository = departamentoRepository;
     _departamentoService    = departamentoService;
     _mapper = mapper;
 }
 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;
 }
Esempio n. 5
0
 public DepartamentoAppService(
     IMapper map,
     INotificador notificador,
     IDepartamentoService service
     ) : base(map, notificador)
 {
     _service = service;
 }
 public UbigeoController(IPaisService paisService,
                         IDepartamentoService departamentoService,
                         IProvinciaService provinciaService,
                         IDistritoService distritoService)
 {
     this.paisService         = paisService;
     this.departamentoService = departamentoService;
     this.provinciaService    = provinciaService;
     this.distritoService     = distritoService;
 }
Esempio n. 7
0
 public UsuarioController(IUsuarioService usuarioService,
                          IDepartamentoService departamentoService,
                          IGrupoDeSegurancaService grupoDeSegurancaService,
                          IHostingEnvironment hostingEnvironment)
 {
     this.usuarioService          = usuarioService;
     this.hostingEnvironment      = hostingEnvironment;
     this.departamentoService     = departamentoService;
     this.grupoDeSegurancaService = grupoDeSegurancaService;
 }
Esempio n. 8
0
 public ManifestacaoService(
     IManifestacaoRepository repository,
     INotificador notificador,
     IDepartamentoService departamentoService,
     IUsuarioService usuarioService
     ) : base(notificador)
 {
     _repository          = repository;
     _departamentoService = departamentoService;
     _usuarioService      = usuarioService;
 }
 public SolicitacaoController(ISolicitacaoService solicitacaoService,
                              IClienteService clienteService,
                              IUsuarioService usuarioService,
                              IDepartamentoService departamentoService,
                              IHostingEnvironment hostingEnvironment)
 {
     this.solicitacaoService  = solicitacaoService;
     this.clienteService      = clienteService;
     this.usuarioService      = usuarioService;
     this.hostingEnvironment  = hostingEnvironment;
     this.departamentoService = departamentoService;
 }
Esempio n. 10
0
 public SucursalController(ISucursalService sucursalService,
                           IEmpresaService empresaService, IPaisService paisService,
                           IDepartamentoService departamentoService,
                           IProvinciaService provinciaService,
                           IDistritoService distritoService)
 {
     this.sucursalService     = sucursalService;
     this.empresaService      = empresaService;
     this.paisService         = paisService;
     this.departamentoService = departamentoService;
     this.provinciaService    = provinciaService;
     this.distritoService     = distritoService;
 }
Esempio n. 11
0
 public InteracaoService(
     IInteracaoRepository repository,
     INotificador notificador,
     IManifestacaoService manifestationService,
     IUsuarioService userService,
     IDepartamentoService departamentService
     ) : base(notificador)
 {
     _repository           = repository;
     _manifestationService = manifestationService;
     _userService          = userService;
     _departamentService   = departamentService;
 }
 public DepartamentoController(IDepartamentoService departamentoBusiness)
 {
     _departamentoBusiness = departamentoBusiness;
 }
Esempio n. 13
0
 public DepartamentoController(IDepartamentoService _departamentoService)
 {
     departamentoService = _departamentoService;
 }
 public DepartamentoController(IDepartamentoService service)
 {
     _service = service;
 }
Esempio n. 15
0
 public DepartamentoMap(IDepartamentoService service)
 {
     this.service = service;
 }
Esempio n. 16
0
 public DepartamentosController(IDepartamentoService departamentoService)
 {
     this._departamentoService = departamentoService;
 }
Esempio n. 17
0
 public FuncionarioController(IFuncionarioService _FuncionarioService, IDepartamentoService _departamentoService)
 {
     FuncionarioService  = _FuncionarioService;
     departamentoService = _departamentoService;
 }
Esempio n. 18
0
 public DepartamentoController(IDepartamentoService service, IDepartamentoMap map)
 {
     this.service = service;
     this.map     = map;
 }
Esempio n. 19
0
 public DepartamentoApp(IDepartamentoService departamentoService)
     : base(departamentoService)
 {
     _departamentoService = departamentoService;
 }
 public DepartamentoController(IDepartamentoService departamento)
 {
     _departamento = departamento;
 }
 public DepartamentosController(IDepartamentoService DepartamentoService)
 {
     _DepartamentoService = DepartamentoService;
 }
 public DepartamentoController(IDepartamentoService departamentoService)
 {
     _departamentoService = departamentoService;
 }
Esempio n. 23
0
 public DepartamentoApplication(IDepartamentoService departamentoService, IMapper mapper)
 {
     _departamentoService = departamentoService;
     _mapper = mapper;
 }