2007-09-04 17:25:54 +00:00
|
|
|
unit uIEditorGruposCliente;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2008-11-10 14:52:10 +00:00
|
|
|
uEditorDBBase, uBizGruposCliente, uGruposClienteController, uGUIBase;
|
2007-09-04 17:25:54 +00:00
|
|
|
|
|
|
|
|
type
|
2008-11-10 14:52:10 +00:00
|
|
|
IEditorGruposCliente = interface(ICustomEditor)
|
2007-09-04 17:25:54 +00:00
|
|
|
['{7BF79417-A95C-41F3-96DE-707F2D6F29E3}']
|
2008-11-10 11:29:57 +00:00
|
|
|
function ShowModal : Integer;
|
|
|
|
|
procedure Show;
|
|
|
|
|
|
2007-09-04 17:25:54 +00:00
|
|
|
function GetGruposCliente: IBizGrupoCliente;
|
|
|
|
|
procedure SetGruposCliente(const Value: IBizGrupoCliente);
|
|
|
|
|
property GruposCliente: IBizGrupoCliente read GetGruposCliente write SetGruposCliente;
|
|
|
|
|
|
|
|
|
|
function GetController : IGruposClienteController;
|
|
|
|
|
procedure SetController (const Value : IGruposClienteController);
|
|
|
|
|
property Controller : IGruposClienteController read GetController write SetController;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|