21 lines
471 B
ObjectPascal
21 lines
471 B
ObjectPascal
|
|
unit uIDataModuleFacturasProforma;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
SysUtils, Classes, uROTypes,
|
||
|
|
uBizFacturasProforma, uBizDetallesFacturaProforma;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleFacturasProforma = interface
|
||
|
|
['{2B3BC044-58BD-4082-8614-394424C116E6}']
|
||
|
|
function GetAnosItems : TStringList;
|
||
|
|
function GetItems: IBizFacturaProforma;
|
||
|
|
function GetItem(const ID : Integer) : IBizFacturaProforma;
|
||
|
|
function NewItem : IBizFacturaProforma;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|