git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoDesign_FactuGES/trunk@2 93f398dd-4eb6-7a46-baf6-13f46f578da2
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.
|