git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@2 c93665c3-c93d-084d-9b98-7d5f4a9c3376
28 lines
571 B
ObjectPascal
28 lines
571 B
ObjectPascal
unit uBizTiendaWebServer;
|
|
|
|
interface
|
|
|
|
uses
|
|
schTiendaWebServer_Intf, uDAInterfaces,
|
|
uDADataTable, uDABusinessProcessor;
|
|
|
|
const
|
|
BIZ_SERVER_TIENDA_WEB = 'Server.TiendaWeb';
|
|
|
|
type
|
|
TBizTiendaWebServer = class(TTiendaWebBusinessProcessorRules)
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
Dialogs, SysUtils, Variants, uDataModuleServer, uDAClasses, DARemoteService_Impl,
|
|
schTiendaWebClient_Intf, uBusinessUtils, uROClasses;
|
|
|
|
{ TBizRemesasClienteServer }
|
|
|
|
initialization
|
|
RegisterBusinessProcessorRules(BIZ_SERVER_TIENDA_WEB, TBizTiendaWebServer);
|
|
|
|
end.
|