22 lines
488 B
ObjectPascal
22 lines
488 B
ObjectPascal
|
|
unit uIDataModuleClientes;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uBizContactos, uIDataModuleContactos, uBizGruposCliente;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleClientes = interface(IDataModuleContactos)
|
||
|
|
['{A7442A11-01F6-4F1A-B6B0-D3B9CCBC5392}']
|
||
|
|
function GetItem(const ID : Integer) : IBizCliente;
|
||
|
|
function NewItem : IBizCliente;
|
||
|
|
function GetItems : IBizCliente;
|
||
|
|
function GetItemsTiendaWeb : IBizCliente;
|
||
|
|
function GetGruposCliente : IBizGrupoCliente;
|
||
|
|
end;
|
||
|
|
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|