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/Modulos/Inventario/Model/Data/uIDataModuleInventario.pas
2007-06-11 15:35:41 +00:00

20 lines
400 B
ObjectPascal

unit uIDataModuleInventario;
interface
uses
uBizInventario;
type
IDataModuleInventario = interface
['{50AFDC00-4F91-4BC3-BB8A-1F53937BF9A6}']
function GetItems: IBizInventario;
function GetItem(const ID : Integer) : IBizInventario;
function GetNextID(const DataSetName : String) : Integer;
function NewItem : IBizInventario;
end;
implementation
end.