20 lines
590 B
ObjectPascal
20 lines
590 B
ObjectPascal
|
|
unit uIDataModulePresupuestosClienteReport;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uROTypes, uIntegerListUtils;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModulePresupuestosClienteReport = interface
|
||
|
|
['{70CEBB06-376F-4363-B80F-DDA4324E0F85}']
|
||
|
|
function GetRptPresupuestos(const AListaID: TIntegerList; Const AVerSello: Integer): Binary;
|
||
|
|
function GetRptWordPresupuesto(const AID: Integer; Const AVerSello: Integer): Binary;
|
||
|
|
function GetRptWordCertificadoTrabajos(const AID: Integer): Binary;
|
||
|
|
function GetRptPDFPresupuesto(const AID: Integer; Const AVerSello: Integer): Binary;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|