unit srvReferencias_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. } {----------------------------------------------------------------------------} {$I Remobjects.inc} interface uses {vcl:} Classes, SysUtils, {RemObjects:} uROXMLIntf, uROClientIntf, uROTypes, uROServer, uROServerIntf, uROSessions, {Required:} uRORemoteDataModule, {Ancestor Implementation:} DataAbstractService_Impl, {Used RODLs:} DataAbstract4_Intf, {Generated:} FactuGES_Intf; type { TsrvReferencias } TsrvReferencias = class(TDataAbstractService, IsrvReferencias) private protected { IsrvReferencias methods } function DarNuevaReferencia(const NombreReferencia: String; const EmpresaID: Integer; const TiendaID: Integer): String; function IncrementarValorReferencia(const NombreReferencia: String; const Valor: String; const EmpresaID: Integer; const TiendaID: Integer): Boolean; end; implementation {$R *.dfm} uses {Generated:} FactuGES_Invk; procedure Create_srvReferencias(out anInstance : IUnknown); begin anInstance := TsrvReferencias.Create(nil); end; { srvReferencias } function TsrvReferencias.DarNuevaReferencia(const NombreReferencia: String; const EmpresaID: Integer; const TiendaID: Integer): String; begin end; function TsrvReferencias.IncrementarValorReferencia(const NombreReferencia: String; const Valor: String; const EmpresaID: Integer; const TiendaID: Integer): Boolean; begin end; initialization TROClassFactory.Create('srvReferencias', Create_srvReferencias, TsrvReferencias_Invoker); finalization end.