<< Click to Display Table of Contents >> Navigation: Web Service > Funciones > Classes > TListaProducto |
TArrayProducto = array of TProducto;
TListaProducto = class(TRemotable)
private
FCount : Integer;
FArrayProducto: TArrayProducto;
public
procedure SetLengthList(Value: integer);
published
property Count: integer read FCount write FCount;
property ArrayProducto: TArrayProducto read FArrayProducto write FArrayProducto;
end;