Tecsitel_FactuGES2/Source/Modulos/Fabricantes/Controller/View/uIEditorFabricantes.pas

27 lines
694 B
ObjectPascal

unit uIEditorFabricantes;
interface
uses
uEditorDBBase, uBizFabricantes, uFabricantesController;
type
IEditorFabricantes = interface
['{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;
function ShowModal : Integer;
procedure Show;
end;
implementation
end.