git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@232 c93665c3-c93d-084d-9b98-7d5f4a9c3376
24 lines
670 B
ObjectPascal
24 lines
670 B
ObjectPascal
unit uIEditorDetallesSinRecibir;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorGridBase, uBizInventario, uInventarioController;
|
|
|
|
type
|
|
IEditorDetallesSinRecibir = interface(IEditorGridBase)
|
|
['{EE301C2F-98DC-49CD-B7EA-D29D0B9326D8}']
|
|
function GetDetalles: IBizDetalleSinRecibir;
|
|
procedure SetDetalles(const Value: IBizDetalleSinRecibir);
|
|
property Detalles: IBizDetalleSinRecibir read GetDetalles write SetDetalles;
|
|
|
|
function GetController : IInventarioController;
|
|
procedure SetController (const Value : IInventarioController);
|
|
property Controller : IInventarioController read GetController write SetController;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|