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

24 lines
457 B
ObjectPascal

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