git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@2 c93665c3-c93d-084d-9b98-7d5f4a9c3376
31 lines
818 B
ObjectPascal
31 lines
818 B
ObjectPascal
unit uIEditorElegirDireccionEntrega;
|
|
|
|
interface
|
|
|
|
uses
|
|
uBizDireccionesContacto, uGUIBase;
|
|
|
|
type
|
|
IEditorElegirDireccionEntrega = interface
|
|
['{AB909782-25E1-4715-B98A-EA62FB9DC03C}']
|
|
function GetDireccion: IBizDireccionesContacto;
|
|
procedure SetDireccion(const Value: IBizDireccionesContacto);
|
|
property Direccion: IBizDireccionesContacto read GetDireccion write SetDireccion;
|
|
|
|
procedure SetMensaje (const AValue: String);
|
|
function GetMensaje: String;
|
|
property Mensaje : String read GetMensaje write SetMensaje;
|
|
|
|
function GetDireccionSeleccionada: IBizDireccionesContacto;
|
|
property DireccionSeleccionada: IBizDireccionesContacto read GetDireccionSeleccionada;
|
|
|
|
function ShowModal : Integer;
|
|
procedure Release;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|
|
|