18 lines
350 B
ObjectPascal
18 lines
350 B
ObjectPascal
|
|
unit uIDataModuleInfVentasArticulo;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
uBizInfVentasArticulo;
|
||
|
|
|
||
|
|
type
|
||
|
|
IDataModuleInfVentasArticulo = interface
|
||
|
|
['{802EC507-6C31-4AEB-B481-577D177D474D}']
|
||
|
|
function GetItems(const AColumns: String; const AWhere: String) : IBizInfVentasArticulo;
|
||
|
|
function GetNameColumns: String;
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
end.
|