コード例 #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 DocumentoController(IDocumentoIdentidadService documentoIdentidadService)
 {
     this.documentoIdentidadService = documentoIdentidadService;
 }