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

26 lines
475 B
ObjectPascal

unit uProcesoPresupuestosClienteViewRegister;
interface
procedure RegisterViews;
procedure UnregisterViews;
implementation
uses
uEditorRegistryUtils,
uEditorProcesoPresupuestosCLiente;
procedure RegisterViews;
begin
EditorRegistry.RegisterClass(TfEditorProcesoPresupuestosCliente, 'EditorProcesoPresupuestosCliente');
end;
procedure UnregisterViews;
begin
EditorRegistry.UnRegisterClass(TfEditorProcesoPresupuestosCliente);
end;
end.