2008-02-20 16:16:23 +00:00
|
|
|
unit uIEditorFabricantes;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
uEditorDBBase, uBizFabricantes, uFabricantesController;
|
|
|
|
|
|
|
|
|
|
type
|
2008-11-10 11:29:57 +00:00
|
|
|
IEditorFabricantes = interface
|
2008-02-20 16:16:23 +00:00
|
|
|
['{1DD6E573-CCD8-4443-9AC3-378CF63EB639}']
|
|
|
|
|
function GetFabricantes: IBizFabricante;
|
|
|
|
|
procedure SetFabricantes(const Value: IBizFabricante);
|
|
|
|
|
property Fabricantes: IBizFabricante read GetFabricantes write SetFabricantes;
|
|
|
|
|
|
|
|
|
|
function GetController : IFabricantesController;
|
|
|
|
|
procedure SetController (const Value : IFabricantesController);
|
|
|
|
|
property Controller : IFabricantesController read GetController write SetController;
|
2008-11-10 11:29:57 +00:00
|
|
|
|
|
|
|
|
function ShowModal : Integer;
|
|
|
|
|
procedure Show;
|
2008-02-20 16:16:23 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|