This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
LuisLeon_FactuGES/Source/Modulos/Inventario/Controller/View/uIEditorDetallesSinRecibir.pas

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.