2007-10-03 16:03:28 +00:00
|
|
|
unit uIDataModuleEmpresas;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
SysUtils, Classes,
|
|
|
|
|
uBizEmpresas;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModuleEmpresas = interface
|
|
|
|
|
['{681FD37D-8C67-47F1-8286-2B6EFE95CE7D}']
|
|
|
|
|
function GetItem(const ID : Integer) : IBizEmpresa;
|
|
|
|
|
function NewItem : IBizEmpresa;
|
|
|
|
|
function GetItems : IBizEmpresa;
|
2008-11-24 17:45:29 +00:00
|
|
|
|
|
|
|
|
function DarListaFormasPago: TStringList;
|
2010-02-08 18:38:14 +00:00
|
|
|
function DarListaTiposIVA: TStringList;
|
|
|
|
|
function DarListaAlmacenes(const ID_EMPRESA: Integer): TStringList;
|
2007-10-03 16:03:28 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|