git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES2/trunk@6 40301925-124e-1c4e-b97d-170ad7a8785b
27 lines
714 B
ObjectPascal
27 lines
714 B
ObjectPascal
unit uIDataModuleEmpresas;
|
|
|
|
interface
|
|
|
|
uses
|
|
SysUtils, Classes, uBizEmpresas, uBizEmpresasTiendas;
|
|
|
|
type
|
|
IDataModuleEmpresas = interface
|
|
['{681FD37D-8C67-47F1-8286-2B6EFE95CE7D}']
|
|
function GetItem(const ID : Integer) : IBizEmpresa;
|
|
function NewItem : IBizEmpresa;
|
|
function GetItems : IBizEmpresa;
|
|
|
|
function NewTienda : IBizEmpresaTienda;
|
|
function GetTienda(const ID : Integer) : IBizEmpresaTienda;
|
|
function GetTiendas : IBizEmpresaTienda;
|
|
|
|
function DarTiendaUsuario(const ID_EMPRESA: Integer; const ID_USUARIO: Integer): Integer;
|
|
function DarListaFormasPago: TStringList;
|
|
function DarListaTiposIVA: TStringList;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|