unit uIViewFiltroArticulos; interface uses uIViewParametrosInforme; type IViewFiltroArticulos = interface(IViewParametrosInforme) ['{286EBFA7-AF1D-4752-A727-887423B81A45}'] procedure setIdArticulo(const IdArticulo:Integer); function getIdArticulo: Integer; property IdArticulo : Integer read getIdArticulo write setIdArticulo; end; implementation end.