git-svn-id: https://192.168.0.254/svn/Proyectos.Noviseda_FactuGES2/trunk@4 f33bb606-9f5c-448d-9c99-757f00063c96
27 lines
719 B
ObjectPascal
27 lines
719 B
ObjectPascal
unit uIEditorFabricantes;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorDBBase, uBizFabricantes, uFabricantesController, uGUIBase;
|
|
|
|
type
|
|
IEditorFabricantes = interface(ICustomEditor)
|
|
['{BCA44D6E-18A9-4F38-9D52-9A2F6C721DA3}']
|
|
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.
|