git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@431 f4e31baf-9722-1c47-927c-6f952f962d4b
23 lines
492 B
ObjectPascal
23 lines
492 B
ObjectPascal
unit uIEditorDireccionEntregaContratoCliente;
|
|
|
|
interface
|
|
|
|
uses
|
|
uBizContratosCliente;
|
|
|
|
type
|
|
IEditorDireccionEntregaContratoCliente = interface
|
|
['{07ECA26A-2D8E-405E-9504-CD0A9CFCB6E8}']
|
|
function GetContrato: IBizContratoCliente;
|
|
procedure SetContrato(const Value: IBizContratoCliente);
|
|
property Contrato: IBizContratoCliente read GetContrato write SetContrato;
|
|
|
|
function ShowModal : Integer;
|
|
procedure Release;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|