2007-11-16 20:58:56 +00:00
|
|
|
unit uIDataModuleInventario;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
uBizInventario;
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModuleInventario = interface
|
|
|
|
|
['{50AFDC00-4F91-4BC3-BB8A-1F53937BF9A6}']
|
|
|
|
|
function GetItems: IBizInventario; overload;
|
|
|
|
|
function GetItems(const ID_ALMACEN : Integer) : IBizInventario; overload;
|
2008-09-04 17:38:49 +00:00
|
|
|
function GetDetalleReservas: IBizDetalleReservas;
|
|
|
|
|
function GetDetalleReservasVacio: IBizDetalleReservas;
|
2007-11-16 20:58:56 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|