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_FactuGES/Source/Modulos/Empresas/Controller/View/uIEditorEmpresa.pas
2007-06-11 15:29:06 +00:00

24 lines
606 B
ObjectPascal

unit uIEditorEmpresa;
interface
uses
uEditorDBItem, uBizEmpresas, uEmpresasController;
type
IEditorEmpresa = interface(IEditorDBItem)
['{88FA3FF3-ACDC-4BCC-ADCE-6BA890E55220}']
function GetController : IEmpresasController;
procedure SetController (const Value : IEmpresasController);
property Controller : IEmpresasController read GetController
write SetController;
function GetEmpresa: IBizEmpresa;
procedure SetEmpresa(const Value: IBizEmpresa);
property Empresa: IBizEmpresa read GetEmpresa write SetEmpresa;
end;
implementation
end.