AlonsoYSal_FactuGES2/Source/Modulos/Contratos de cliente/Controller/View/uIEditorDireccionEntregaContratoCliente.pas
2019-11-18 10:36:42 +00:00

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.