This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES2/Source/Modulos/Informe ventas por articulo/Controller/uInfVentasArticuloInformeRegister.pas
2011-10-03 17:47:25 +00:00

26 lines
662 B
ObjectPascal

unit uInfVentasArticuloInformeRegister;
interface
procedure RegisterInformes;
procedure UnregisterInformes;
implementation
uses
uInformeRegistryUtils, uInfVentasArticuloController, uInfVentasAlbArticuloController;
procedure RegisterInformes;
begin
InformeRegistry.RegisterClass(TInfVentasArticuloController, 'InfVentasArticuloController');
InformeRegistry.RegisterClass(TInfVentasAlbArticuloController, 'InfVentasAlbArticuloController');
end;
procedure UnregisterInformes;
begin
InformeRegistry.UnRegisterClass(TInfVentasArticuloController);
InformeRegistry.UnRegisterClass(TInfVentasAlbArticuloController);
end;
end.