This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Noviseda_FactuGES2/Source/Modulos/Pedidos de cliente/Controller/View/uIEditorDireccionEntregaPedidoCliente.pas
2010-02-17 10:44:34 +00:00

23 lines
472 B
ObjectPascal

unit uIEditorDireccionEntregaPedidoCliente;
interface
uses
uBizPedidosCliente;
type
IEditorDireccionEntregaPedidoCliente = interface
['{9CF49F99-92A6-4E08-B518-EDBB3FBF0FB2}']
function GetPedido: IBizPedidoCliente;
procedure SetPedido(const Value: IBizPedidoCliente);
property Pedido: IBizPedidoCliente read GetPedido write SetPedido;
function ShowModal : Integer;
procedure Release;
end;
implementation
end.