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/Views/uInfVentasArticuloViewRegister.pas

24 lines
425 B
ObjectPascal

unit uInfVentasArticuloViewRegister;
interface
procedure RegisterViews;
procedure UnregisterViews;
implementation
uses
uEditorRegistryUtils, uEditorInfVentasArticulo;
procedure RegisterViews;
begin
EditorRegistry.RegisterClass(TfEditorInfVentasArticulo, 'EditorInfVentasArticulo');
end;
procedure UnregisterViews;
begin
EditorRegistry.UnRegisterClass(TfEditorInfVentasArticulo);
end;
end.