2007-09-09 10:56:47 +00:00
|
|
|
unit srvRecepciones_Impl;
|
|
|
|
|
|
|
|
|
|
{----------------------------------------------------------------------------}
|
|
|
|
|
{ This unit was automatically generated by the RemObjects SDK after reading }
|
|
|
|
|
{ the RODL file associated with this project . }
|
|
|
|
|
{ }
|
|
|
|
|
{ This is where you are supposed to code the implementation of your objects. }
|
|
|
|
|
{----------------------------------------------------------------------------}
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
{vcl:} Classes, SysUtils,
|
|
|
|
|
{RemObjects:} uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions,
|
2008-04-16 08:48:53 +00:00
|
|
|
{Ancestor Implementation:} DataAbstractService_Impl,
|
|
|
|
|
{Used RODLs:} DataAbstract4_Intf,
|
2007-09-09 10:56:47 +00:00
|
|
|
uDAScriptingProvider, uDABusinessProcessor,
|
|
|
|
|
{Generated:} VARELA_Intf, uDAClasses,
|
|
|
|
|
uDAInterfaces, uDADataTable, uDABINAdapter, uDADataStreamer;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
{ TsrvRecepciones }
|
2008-04-16 08:48:53 +00:00
|
|
|
TsrvRecepciones = class(TDataAbstractService, IsrvRecepciones)
|
2007-09-09 10:56:47 +00:00
|
|
|
bpRecepciones: TDABusinessProcessor;
|
|
|
|
|
bpRecepcionesAprobadas: TDABusinessProcessor;
|
|
|
|
|
bpRecepcionesPendientes: TDABusinessProcessor;
|
|
|
|
|
DABINAdapter: TDABINAdapter;
|
|
|
|
|
schRecepciones: TDASchema;
|
|
|
|
|
DADataDictionary1: TDADataDictionary;
|
|
|
|
|
private
|
|
|
|
|
protected
|
|
|
|
|
{ IsrvRecepciones methods }
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
uses
|
|
|
|
|
{Generated:} VARELA_Invk, uDataModuleServer, Variants;
|
|
|
|
|
|
|
|
|
|
procedure Create_srvRecepciones(out anInstance : IUnknown);
|
|
|
|
|
begin
|
|
|
|
|
anInstance := TsrvRecepciones.Create(NIL);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
{ srvRecepciones }
|
|
|
|
|
initialization
|
|
|
|
|
TROClassFactory.Create('srvRecepciones', Create_srvRecepciones, TsrvRecepciones_Invoker);
|
|
|
|
|
|
|
|
|
|
finalization
|
|
|
|
|
|
|
|
|
|
end.
|