unit srvTarifas_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, {Ancestor Implementation:} DataAbstractService_Impl, {Used RODLs:} DataAbstract4_Intf, {Generated:} uDABusinessProcessor, uDABin2DataStreamer, uDADataStreamer, uDAScriptingProvider, uDAClasses, FactuGES_Intf, uDAInterfaces; type { TsrvTarifas } TsrvTarifas = class(TDataAbstractService, IsrvTarifas) Diagrams: TDADiagrams; Bin2DataStreamer: TDABin2DataStreamer; schTarifas: TDASchema; DataDictionary: TDADataDictionary; procedure DARemoteServiceCreate(Sender: TObject); procedure DataAbstractServiceBeforeAcquireConnection(aSender: TObject; var aConnectionName: string); { IsrvTarifas methods } end; implementation {$R *.dfm} uses {Generated:} FactuGES_Invk, uDataModuleServer, uDatabaseUtils, schTarifasClient_Intf, uRestriccionesUsuarioUtils; procedure Create_srvTarifas(out anInstance : IUnknown); begin anInstance := TsrvTarifas.Create(NIL); end; { srvTarifas } procedure TsrvTarifas.DARemoteServiceCreate(Sender: TObject); begin //SessionManager := dmServer.SessionManager; end; procedure TsrvTarifas.DataAbstractServiceBeforeAcquireConnection( aSender: TObject; var aConnectionName: string); begin ConnectionName := dmServer.ConnectionName; end; initialization TROClassFactory.Create('srvTarifas', Create_srvTarifas, TsrvTarifas_Invoker); finalization end.