* Repaso a presupuestos (apariencia de editor ficha). * Limpieza de código repetido en contactos. git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@784 0c75b7a4-871f-7646-8a2f-f78d34cc349f
30 lines
786 B
ObjectPascal
30 lines
786 B
ObjectPascal
unit uIEditorElegirPersonaContacto;
|
|
|
|
interface
|
|
|
|
uses
|
|
uBizContactosPersonal, uGUIBase;
|
|
|
|
type
|
|
IEditorElegirPersonaContacto = interface
|
|
['{B069A079-BC05-4027-BC1D-D78849F173D0}']
|
|
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.
|