2011-11-14 17:40:41 +00:00
|
|
|
unit uIEditorGruposCliente;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2025-07-23 10:19:05 +00:00
|
|
|
uEditorDBBase, uBizGruposCliente, uGruposClienteController, uGUIBase;
|
2011-11-14 17:40:41 +00:00
|
|
|
|
|
|
|
|
type
|
2025-07-23 10:19:05 +00:00
|
|
|
IEditorGruposCliente = interface(ICustomEditor)
|
2011-11-14 17:40:41 +00:00
|
|
|
['{7BF79417-A95C-41F3-96DE-707F2D6F29E3}']
|
2025-07-23 10:19:05 +00:00
|
|
|
function ShowModal : Integer;
|
|
|
|
|
procedure Show;
|
|
|
|
|
|
2011-11-14 17:40:41 +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.
|