git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES2/trunk@6 40301925-124e-1c4e-b97d-170ad7a8785b
24 lines
641 B
ObjectPascal
24 lines
641 B
ObjectPascal
unit uIEditorSubCuentas;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorGridBase, uBizSubCuentas, uSubCuentasController;
|
|
|
|
type
|
|
IEditorSubCuentas = interface (IEditorGridBase)
|
|
['{47A77BA9-3845-469B-A790-81F3C6E0F134}']
|
|
function GetController : ISubCuentasController;
|
|
procedure SetController (const Value : ISubCuentasController);
|
|
property Controller : ISubCuentasController read GetController write SetController;
|
|
|
|
function GetSubCuentas: IBizSubCuenta;
|
|
procedure SetSubCuentas(const Value: IBizSubCuenta);
|
|
property SubCuentas: IBizSubCuenta read GetSubCuentas write SetSubCuentas;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|