git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoDesign_FactuGES/trunk@147 93f398dd-4eb6-7a46-baf6-13f46f578da2
64 lines
2.0 KiB
ObjectPascal
64 lines
2.0 KiB
ObjectPascal
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.
|