git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@448 0c75b7a4-871f-7646-8a2f-f78d34cc349f
57 lines
1.7 KiB
ObjectPascal
57 lines
1.7 KiB
ObjectPascal
unit srvProvinciasPoblaciones_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,
|
|
{Used RODLs:} DataAbstract4_Intf,
|
|
{Generated:} FactuGES_Intf;
|
|
|
|
type
|
|
{ TsrvProvinciasPoblaciones }
|
|
TsrvProvinciasPoblaciones = class(TRORemoteDataModule, IsrvProvinciasPoblaciones)
|
|
private
|
|
protected
|
|
{ IsrvProvinciasPoblaciones methods }
|
|
function DarListaProvincias: Binary;
|
|
function DarListaPoblaciones(const ID_Provincia: Integer): Binary;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
uses
|
|
{Generated:} FactuGES_Invk;
|
|
|
|
procedure Create_srvProvinciasPoblaciones(out anInstance : IUnknown);
|
|
begin
|
|
anInstance := TsrvProvinciasPoblaciones.Create(nil);
|
|
end;
|
|
|
|
{ srvProvinciasPoblaciones }
|
|
function TsrvProvinciasPoblaciones.DarListaProvincias: Binary;
|
|
begin
|
|
end;
|
|
|
|
function TsrvProvinciasPoblaciones.DarListaPoblaciones(const ID_Provincia: Integer): Binary;
|
|
begin
|
|
end;
|
|
|
|
initialization
|
|
TROClassFactory.Create('srvProvinciasPoblaciones', Create_srvProvinciasPoblaciones, TsrvProvinciasPoblaciones_Invoker);
|
|
|
|
finalization
|
|
|
|
end.
|