2007-11-28 17:40:31 +00:00
|
|
|
unit uIDataModulePresupuestosCliente;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2009-06-30 16:39:42 +00:00
|
|
|
Classes, uROTypes, uBizPresupuestosCliente, uBizDetallesPresupuestoCliente,
|
|
|
|
|
uIntegerListUtils;
|
2007-11-28 17:40:31 +00:00
|
|
|
|
|
|
|
|
type
|
|
|
|
|
IDataModulePresupuestosCliente = interface
|
|
|
|
|
['{F0DDD126-9E62-4FEC-A849-FDCA75718F5B}']
|
2009-06-30 16:39:42 +00:00
|
|
|
function GetAnosItems : TStringList;
|
|
|
|
|
function GetItems: IBizPresupuestoCliente; overload;
|
|
|
|
|
function GetItems(const AListaID: TIntegerList) : IBizPresupuestoCliente; overload;
|
2007-11-28 17:40:31 +00:00
|
|
|
function GetItem(const ID : Integer) : IBizPresupuestoCliente;
|
|
|
|
|
function NewItem : IBizPresupuestoCliente;
|
2009-07-09 09:23:03 +00:00
|
|
|
function GetPropiedades : IBizPropiedades;
|
2012-05-23 11:49:20 +00:00
|
|
|
function GetCapitulo(const TIPO_ARTICULO : String) : IBizCapitulo;
|
2007-11-28 17:40:31 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|