AbetoDesign_FactuGES2/Source/Modulos/Contabilidad/Controller/View/uIEditorCuentas.pas

24 lines
596 B
ObjectPascal

unit uIEditorCuentas;
interface
uses
uEditorGridBase, uBizCuentas, uCuentasController;
type
IEditorCuentas = interface (IEditorGridBase)
['{47A77BA9-3845-469B-A790-81F3C6E0F134}']
function GetController : ICuentasController;
procedure SetController (const Value : ICuentasController);
property Controller : ICuentasController read GetController write SetController;
function GetCuentas: IBizCuenta;
procedure SetCuentas(const Value: IBizCuenta);
property Cuentas: IBizCuenta read GetCuentas write SetCuentas;
end;
implementation
end.