git-svn-id: https://192.168.0.254/svn/Proyectos.ConstruccionesCNJ_FactuGES/trunk@4 6cb6b671-b4a0-dd4c-8bdc-3006503d97e9
21 lines
445 B
ObjectPascal
21 lines
445 B
ObjectPascal
unit uIDataModuleCobrosCliente;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, uROTypes,
|
|
uBizCobrosCliente;
|
|
|
|
type
|
|
IDataModuleCobrosCliente = interface
|
|
['{D2AAB017-4AA1-42BA-9B6D-72A074ACA3B6}']
|
|
function GetItems: IBizCobroCliente;
|
|
function GetItem(const ID : Integer) : IBizCobroCliente;
|
|
function GetNextID(const DataSetName : String) : Integer;
|
|
function NewItem : IBizCobroCliente;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|