19 lines
370 B
ObjectPascal
19 lines
370 B
ObjectPascal
|
|
unit uIDataModuleRemesasProveedor;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uBizRemesasProveedor;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleRemesasProveedor = interface
|
||
|
|
['{6073E44A-0B61-4D26-BCDE-33150D88C91B}']
|
||
|
|
function GetItems: IBizRemesaProveedor;
|
||
|
|
function GetItem(const ID : Integer) : IBizRemesaProveedor;
|
||
|
|
function NewItem : IBizRemesaProveedor;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|