コード例 #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;
 }
コード例 #2
0
 public EmpleadoController(ILogger <EmpleadoController> logger, IEmpleadoService empleadoService, IPuestoService puestoService, IDepartamentoService departamentoService)
 {
     this.logger          = logger;
     _empleadoService     = empleadoService;
     _puestoService       = puestoService;
     _departamentoService = departamentoService;
 }
コード例 #3
0
 public DepartamentosController(IDepartamentoRepository departamentoRepository, IMapper mapper
                                , IDepartamentoService departamentoService)
 {
     _departamentoRepository = departamentoRepository;
     _departamentoService    = departamentoService;
     _mapper = mapper;
 }
コード例 #4
0
 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;
 }
コード例 #5
0
 public DepartamentoAppService(
     IMapper map,
     INotificador notificador,
     IDepartamentoService service
     ) : base(map, notificador)
 {
     _service = service;
 }
コード例 #6
0
 public UbigeoController(IPaisService paisService,
                         IDepartamentoService departamentoService,
                         IProvinciaService provinciaService,
                         IDistritoService distritoService)
 {
     this.paisService         = paisService;
     this.departamentoService = departamentoService;
     this.provinciaService    = provinciaService;
     this.distritoService     = distritoService;
 }
コード例 #7
0
 public UsuarioController(IUsuarioService usuarioService,
                          IDepartamentoService departamentoService,
                          IGrupoDeSegurancaService grupoDeSegurancaService,
                          IHostingEnvironment hostingEnvironment)
 {
     this.usuarioService          = usuarioService;
     this.hostingEnvironment      = hostingEnvironment;
     this.departamentoService     = departamentoService;
     this.grupoDeSegurancaService = grupoDeSegurancaService;
 }
コード例 #8
0
 public ManifestacaoService(
     IManifestacaoRepository repository,
     INotificador notificador,
     IDepartamentoService departamentoService,
     IUsuarioService usuarioService
     ) : base(notificador)
 {
     _repository          = repository;
     _departamentoService = departamentoService;
     _usuarioService      = usuarioService;
 }
コード例 #9
0
 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;
 }
コード例 #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;
 }
コード例 #11
0
 public InteracaoService(
     IInteracaoRepository repository,
     INotificador notificador,
     IManifestacaoService manifestationService,
     IUsuarioService userService,
     IDepartamentoService departamentService
     ) : base(notificador)
 {
     _repository           = repository;
     _manifestationService = manifestationService;
     _userService          = userService;
     _departamentService   = departamentService;
 }
コード例 #12
0
 public DepartamentoController(IDepartamentoService departamentoBusiness)
 {
     _departamentoBusiness = departamentoBusiness;
 }
コード例 #13
0
 public DepartamentoController(IDepartamentoService _departamentoService)
 {
     departamentoService = _departamentoService;
 }
コード例 #14
0
 public DepartamentoController(IDepartamentoService service)
 {
     _service = service;
 }
コード例 #15
0
 public DepartamentoMap(IDepartamentoService service)
 {
     this.service = service;
 }
コード例 #16
0
 public DepartamentosController(IDepartamentoService departamentoService)
 {
     this._departamentoService = departamentoService;
 }
コード例 #17
0
 public FuncionarioController(IFuncionarioService _FuncionarioService, IDepartamentoService _departamentoService)
 {
     FuncionarioService  = _FuncionarioService;
     departamentoService = _departamentoService;
 }
コード例 #18
0
 public DepartamentoController(IDepartamentoService service, IDepartamentoMap map)
 {
     this.service = service;
     this.map     = map;
 }
コード例 #19
0
 public DepartamentoApp(IDepartamentoService departamentoService)
     : base(departamentoService)
 {
     _departamentoService = departamentoService;
 }
コード例 #20
0
 public DepartamentoController(IDepartamentoService departamento)
 {
     _departamento = departamento;
 }
コード例 #21
0
 public DepartamentosController(IDepartamentoService DepartamentoService)
 {
     _DepartamentoService = DepartamentoService;
 }
コード例 #22
0
 public DepartamentoController(IDepartamentoService departamentoService)
 {
     _departamentoService = departamentoService;
 }
コード例 #23
0
 public DepartamentoApplication(IDepartamentoService departamentoService, IMapper mapper)
 {
     _departamentoService = departamentoService;
     _mapper = mapper;
 }