2011-11-14 17:40:41 +00:00
|
|
|
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;
|
2022-06-23 15:49:41 +00:00
|
|
|
function darTiposFacturaCliente : IBizTiposFacturaCliente;
|
2011-11-14 17:40:41 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|