2007-11-05 18:00:22 +00:00
|
|
|
unit uIDataModuleFacturasCliente;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
SysUtils, Classes, uROTypes,
|
|
|
|
|
uBizFacturasCliente, uBizDetallesFacturaCliente;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModuleFacturasCliente = interface
|
|
|
|
|
['{B0BDC388-E831-4946-B736-E817E3EA4B7C}']
|
2009-02-27 10:44:29 +00:00
|
|
|
function GetAnosItems : TStringList;
|
2007-11-05 18:00:22 +00:00
|
|
|
function GetItems: IBizFacturaCliente;
|
|
|
|
|
function GetItem(const ID : Integer) : IBizFacturaCliente;
|
|
|
|
|
function NewItem : IBizFacturaCliente;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|