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.
Noviseda_FactuGES2/Source/Modulos/Obras/Controller/View/uIEditorEjecucionObra.pas
2009-12-16 17:16:54 +00:00

23 lines
570 B
ObjectPascal

unit uIEditorEjecucionObra;
interface
uses
uEditorDBItem, uBizObras, uObrasController;
type
IEditorEjecucionObra = interface(IEditorDBItem)
['{66E87046-6625-4195-BDF0-6559E2BFB163}']
function GetController : IObrasController;
procedure SetController (const Value : IObrasController);
property Controller : IObrasController read GetController write SetController;
function GetObra: IBizObra;
procedure SetObra(const Value: IBizObra);
property Obra: IBizObra read GetObra write SetObra;
end;
implementation
end.