2007-11-16 20:58:56 +00:00
|
|
|
unit uIDataModuleFacturasProveedor;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
SysUtils, Classes, uROTypes,
|
|
|
|
|
uBizFacturasProveedor, uBizDetallesFacturaProveedor;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModuleFacturasProveedor = interface
|
|
|
|
|
['{FD0F5B2F-5556-4031-86F0-EFF96805FD66}']
|
2009-02-27 10:44:29 +00:00
|
|
|
function GetAnosItems : TStringList;
|
2007-11-16 20:58:56 +00:00
|
|
|
function GetItems: IBizFacturaProveedor;
|
|
|
|
|
function GetItem(const ID : Integer) : IBizFacturaProveedor;
|
|
|
|
|
function NewItem : IBizFacturaProveedor;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|