git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@236 c93665c3-c93d-084d-9b98-7d5f4a9c3376
28 lines
809 B
ObjectPascal
28 lines
809 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;
|
|
|
|
procedure SetAlmacen(const Value: Integer);
|
|
function GetAlmacen: Integer;
|
|
property Almacen: Integer write SetAlmacen;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|