18 lines
367 B
ObjectPascal
18 lines
367 B
ObjectPascal
|
|
unit uIDataModuleFacturasClienteReport;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
SysUtils, uROTypes, uIntegerListUtils;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleFacturasClienteReport = interface
|
||
|
|
['{F498AC70-AA38-4C06-B301-85A4AC0B210B}']
|
||
|
|
function GetReport(const AListaID: TIntegerList): Binary;
|
||
|
|
function GetRptPDFFactura(const AID: Integer): Binary;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|