Example #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;
 }
Example #2
0
 public CotizacionController(ICarritoItemService carritoItemService, IDireccionService direccionService, IPedidoService pedidoService, ISedeService sedeService)
 {
     this.carritoItemService = carritoItemService;
     this.direccionService   = direccionService;
     this.pedidoService      = pedidoService;
     this.sedeService        = sedeService;
 }
 public ClienteController(IClienteService ClienteService, IPedidoService PedidoService, IIndustriaService IndustriaService, IUsuarioService UsuarioService, IContactoService ContactoService, IDireccionService DireccionService) 
 {
     this._ClienteService = ClienteService;
     this._PedidoService = PedidoService;
     this._UsuarioService = UsuarioService;
     this._IndustriaService = IndustriaService;
     this._ContactoService = ContactoService;
     this._DireccionService = DireccionService;
 }
Example #4
0
        public EditarDireccionViewModel(IDireccionService direccionService, IDialogCoordinator dialogCoordinator, IDireccionRepository <Direccion> direccionRepository)
        {
            _direccionService    = direccionService;
            _dialogCoordinator   = dialogCoordinator;
            _direccionRepository = direccionRepository;

            GuardarUsandoFuncionesAltoNivelCommand = new AsyncRelayCommand(GuardarUsandoFuncionesAltoNivelAsync);
            GuardarUsandoFuncionesBajoNivelCommand = new AsyncRelayCommand(GuardarUsandoFuncionesBajoNivelAsync);
            CancelarCommand = new RelayCommand(CerrarVista);
        }
Example #5
0
 public DireccionController(IDireccionService direccionService)
 {
     this.direccionService = direccionService;
 }
 public DireccionController(IDireccionService DireccionService, IClienteService ClienteService)
 {
     _DireccionService = DireccionService;
     _ClienteService = ClienteService;
 }
 public DireccionController(IDireccionService service)
 {
     _service = service;
 }