git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@2 c93665c3-c93d-084d-9b98-7d5f4a9c3376
21 lines
485 B
ObjectPascal
21 lines
485 B
ObjectPascal
unit uIDataModuleFacturasCliente;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, uROTypes,
|
|
uBizFacturasCliente, uBizDetallesFacturaCliente;
|
|
|
|
type
|
|
IDataModuleFacturasCliente = interface
|
|
['{B0BDC388-E831-4946-B736-E817E3EA4B7C}']
|
|
function GetItems: IBizFacturaCliente;
|
|
function GetItem(const ID : Integer) : IBizFacturaCliente;
|
|
function GetNextID(const DataSetName : String) : Integer;
|
|
function NewItem : IBizFacturaCliente;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|