git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@549 0c75b7a4-871f-7646-8a2f-f78d34cc349f
30 lines
800 B
ObjectPascal
30 lines
800 B
ObjectPascal
unit uIEditorElegirPersonaContactoCliente;
|
|
|
|
interface
|
|
|
|
uses
|
|
uBizContactosPersonal, uGUIBase;
|
|
|
|
type
|
|
IEditorElegirPersonaContactoCliente = interface
|
|
['{40EBA9D9-EFE4-4A0E-B433-AD61E2EAF94F}']
|
|
function GetPersonas: IBizContactoPersonal;
|
|
procedure SetPersonas(const Value: IBizContactoPersonal);
|
|
property Personas: IBizContactoPersonal read GetPersonas write SetPersonas;
|
|
|
|
procedure SetMensaje (const AValue: String);
|
|
function GetMensaje: String;
|
|
property Mensaje : String read GetMensaje write SetMensaje;
|
|
|
|
function GetPersonaSeleccionada: IBizContactoPersonal;
|
|
property PersonaSeleccionada: IBizContactoPersonal read GetPersonaSeleccionada;
|
|
|
|
function ShowModal : Integer;
|
|
procedure Release;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|