git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@407 f4e31baf-9722-1c47-927c-6f952f962d4b
21 lines
466 B
ObjectPascal
21 lines
466 B
ObjectPascal
unit uIDataModuleFacturasCliente;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, uROTypes,
|
|
uBizFacturasCliente, uBizDetallesFacturaCliente;
|
|
|
|
type
|
|
IDataModuleFacturasCliente = interface
|
|
['{B0BDC388-E831-4946-B736-E817E3EA4B7C}']
|
|
function GetAnosItems : TStringList;
|
|
function GetItems: IBizFacturaCliente;
|
|
function GetItem(const ID : Integer) : IBizFacturaCliente;
|
|
function NewItem : IBizFacturaCliente;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|