53 lines
1.5 KiB
ObjectPascal
53 lines
1.5 KiB
ObjectPascal
unit EDI_Sales_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:} DARemoteService_Impl,
|
|
{Used RODLs:} DataAbstract3_Intf,
|
|
{Generated:} VARELA_Intf;
|
|
|
|
type
|
|
{ TEDI_Sales }
|
|
TEDI_Sales = class(TDARemoteService, IEDI_Sales)
|
|
private
|
|
protected
|
|
{ IEDI_Sales methods }
|
|
function CargarFicheroEDI(const FicheroCAB: String; const FicheroLUG: String; const FicheroART: String; out MsgError: String): Boolean;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
uses
|
|
{Generated:} VARELA_Invk;
|
|
|
|
procedure Create_EDI_Sales(out anInstance : IUnknown);
|
|
begin
|
|
anInstance := TEDI_Sales.Create(nil);
|
|
end;
|
|
|
|
{ EDI_Sales }
|
|
function TEDI_Sales.CargarFicheroEDI(const FicheroCAB: String; const FicheroLUG: String; const FicheroART: String; out MsgError: String): Boolean;
|
|
begin
|
|
end;
|
|
|
|
initialization
|
|
TROClassFactory.Create('EDI_Sales', Create_EDI_Sales, TEDI_Sales_Invoker);
|
|
|
|
finalization
|
|
|
|
end.
|