28 lines
496 B
ObjectPascal
28 lines
496 B
ObjectPascal
|
|
unit uBizGruposCliente;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uDAInterfaces, uDADataTable, schContactosClient_Intf;
|
||
|
|
|
||
|
|
const
|
||
|
|
BIZ_CLIENT_GRUPOSCLIENTE = 'Client.GrupoCliente';
|
||
|
|
|
||
|
|
type
|
||
|
|
IBizGrupoCliente = interface(IGruposCliente)
|
||
|
|
['{14D53184-B350-4506-9527-E7F7D9442515}']
|
||
|
|
end;
|
||
|
|
|
||
|
|
TBizGrupoCliente = class(TGruposClienteDataTableRules, IBizGrupoCliente)
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
initialization
|
||
|
|
RegisterDataTableRules(BIZ_CLIENT_GRUPOSCLIENTE, TBizGrupoCliente);
|
||
|
|
|
||
|
|
finalization
|
||
|
|
|
||
|
|
end.
|
||
|
|
|