This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES/Source/Modulos/Tienda web/Model/Data/uIDataModuleTiendaWeb.pas

63 lines
2.3 KiB
ObjectPascal
Raw Normal View History

{
===============================================================================
Copyright (<EFBFBD>) 2007. Rodax Software.
===============================================================================
Los contenidos de este fichero son propiedad de Rodax Software titular del
copyright. Este fichero s<EFBFBD>lo podr<EFBFBD> ser copiado, distribuido y utilizado,
en su totalidad o en parte, con el permiso escrito de Rodax Software, o de
acuerdo con los t<EFBFBD>rminos y condiciones establecidas en el acuerdo/contrato
bajo el que se suministra.
-----------------------------------------------------------------------------
Web: www.rodax-software.com
===============================================================================
Fecha primera versi<EFBFBD>n:
Versi<EFBFBD>n actual: 1.0.0
Fecha versi<EFBFBD>n actual:
===============================================================================
Modificaciones:
Fecha Comentarios
---------------------------------------------------------------------------
===============================================================================
}
unit uIDataModuleTiendaWeb;
interface
uses
uBizTiendaWeb, uBizOscAddressBook, uBizOscCustomers, uBizOscManufacturers,
uBizOscProducts, uBizOscOrders;
type
IDataModuleTiendaWeb = interface
['{E1208D47-C342-4DE1-879A-20F7689AB00A}']
function GetItems: IBizTiendaWeb;
function GetNextID(const DataSetName : String) : Integer;
function GetItem(const ID_Empresa : Integer) : IBizTiendaWeb;
function NewItem : IBizTiendaWeb;
function GetOSCCustomers: IBizOSCCustomer;
function GetOSCCustomer(const IDLocal : Integer): IBizOSCCustomer;
function NewOSCCustomer : IBizOSCCustomer;
function GetOSCManufacturers: IBizOSCManufacturer;
function GetOSCManufacturer(const IDLocal : Integer): IBizOSCManufacturer;
function NewOSCManufacturer : IBizOSCManufacturer;
function GetOSCProducts: IBizOSCProduct;
function GetOSCProduct(const IDLocal : Integer): IBizOSCProduct;
function NewOSCProduct : IBizOSCProduct;
function GetOSCOrders: IBizOscOrder;
function GetOSCOrder(const IDLocal : Integer): IBizOscOrder;
function GetNextIDOSC(const DataSetName : String) : Integer;
function HayConexionConTienda : Boolean;
end;
implementation
end.