git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@309 c93665c3-c93d-084d-9b98-7d5f4a9c3376
21 lines
474 B
ObjectPascal
21 lines
474 B
ObjectPascal
unit uIDataModuleRemesasCliente;
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, uBizRemesasCliente;
|
|
|
|
type
|
|
IDataModuleRemesasCliente = interface
|
|
['{9047C468-78DE-404E-9047-1125B382FE3B}']
|
|
function GetAnosItems : TStringList;
|
|
function GetItems: IBizRemesaCliente;
|
|
function GetItem(const ID : Integer) : IBizRemesaCliente;
|
|
function GetNextID(const DataSetName : String) : Integer;
|
|
function NewItem : IBizRemesaCliente;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|