25 lines
473 B
ObjectPascal
25 lines
473 B
ObjectPascal
|
|
unit uTarifasViewRegister;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
procedure RegisterViews;
|
||
|
|
procedure UnregisterViews;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
uses
|
||
|
|
uEditorRegistryUtils, uEditorTarifas, uEditorElegirTarifa;
|
||
|
|
|
||
|
|
procedure RegisterViews;
|
||
|
|
begin
|
||
|
|
EditorRegistry.RegisterClass(TfEditorElegirTarifa, 'EditorElegirTarifa');
|
||
|
|
EditorRegistry.RegisterClass(TfEditorTarifas, 'EditorTarifas');
|
||
|
|
end;
|
||
|
|
|
||
|
|
procedure UnregisterViews;
|
||
|
|
begin
|
||
|
|
EditorRegistry.UnRegisterClass(TfEditorTarifas);
|
||
|
|
end;
|
||
|
|
|
||
|
|
end.
|