public FacturaController(IFacturaAppService facturaAppService, IUsuarioAppService usuarioAppService, ITerceroAppService terceroAppService) { _facturaAppService = facturaAppService; _usuarioAppService = usuarioAppService; _terceroAppService = terceroAppService; }
public ProductoController(IProductoAppService productoAppService, IMarcaAppService marcaAppService, ICategoriaAppService categoriaAppService, ITerceroAppService terceroAppService) { _productoAppService = productoAppService; _marcaAppService = marcaAppService; _categoriaAppService = categoriaAppService; _terceroAppService = terceroAppService; }
public Productos(ProductoAppService productoAppservice, CategoriaAppService categoriaAppservice, MarcaAppService marcaAppservice, TerceroAppService terceroAppservice) { InitializeComponent(); _productoAppservice = productoAppservice; _categoriaAppservice = categoriaAppservice; _marcaAppservice = marcaAppservice; _terceroAppservice = terceroAppservice; }
public TransaccionController(ITransaccionAppService transaccionAppService, IUsuarioAppService usuarioAppService, ITerceroAppService terceroAppService, IFacturaAppService facturaAppService, ITipoTransaccionAppService tipoTransaccionAppService, IFormaPagoAppService formaPagoAppService) { _transaccionAppService = transaccionAppService; _usuarioAppService = usuarioAppService; _terceroAppService = terceroAppService; _facturaAppService = facturaAppService; _tipoTransaccionAppService = tipoTransaccionAppService; _formaPagoAppService = formaPagoAppService; }
public VentaController(ITerceroAppService terceroAppService, IFormaPagoAppService formapagoAppService, IUsuarioAppService usuarioAppService, IFacturaAppService facturaAppService, IDetalleFacturaAppService detallefacturaAppService, ITransaccionAppService transaccionAppService, IDetalleTransaccionAppService detalletransaccionAppService, IProductoAppService productoAppService) { _terceroAppService = terceroAppService; _formapagoAppService = formapagoAppService; _usuarioAppService = usuarioAppService; _facturaAppService = facturaAppService; _detallefacturaAppService = detallefacturaAppService; _transaccionAppService = transaccionAppService; _detalletransaccionAppService = detalletransaccionAppService; _productoAppService = productoAppService; }
public TerceroController(ITerceroAppService terceroAppService, ITipoTerceroAppService tipoTerceroAppService) { _terceroAppService = terceroAppService; _tipoterceroAppService = tipoTerceroAppService; }