Tecsitel_FactuGES2/Source/Modulos/Obras/Controller/View/uIEditorObras.pas
2008-03-23 20:18:10 +00:00

24 lines
565 B
ObjectPascal

unit uIEditorObras;
interface
uses
uEditorGridBase, uBizObras, uObrasController;
type
IEditorObras = interface(IEditorGridBase)
['{72EE0959-B3A2-4B30-8F1C-5EA65FBFF5D9}']
function GetObras: IBizObra;
procedure SetObras(const Value: IBizObra);
property Obras: IBizObra read GetObras write SetObras;
function GetController : IObrasController;
procedure SetController (const Value : IObrasController);
property Controller : IObrasController read GetController write SetController;
end;
implementation
end.