19 lines
365 B
ObjectPascal
19 lines
365 B
ObjectPascal
|
|
unit uIDataModuleAlbaranesCliente;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uBizAlbaranesCliente;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleAlbaranesCliente = interface
|
||
|
|
['{81932348-9595-45AC-AFC9-5A8983B4A3A8}']
|
||
|
|
function GetItems: IBizAlbaranCliente;
|
||
|
|
function GetItem(const ID : Integer) : IBizAlbaranCliente;
|
||
|
|
function NewItem : IBizAlbaranCliente;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|