git-svn-id: https://192.168.0.254/svn/Proyectos.Cullere_FactuGES2/trunk@3 e61cf4a9-ab77-6246-bebb-cff159b4cb7d
23 lines
486 B
ObjectPascal
23 lines
486 B
ObjectPascal
unit uIEditorCuentaEspecial;
|
|
|
|
interface
|
|
|
|
uses
|
|
uBizCuentasEspeciales;
|
|
|
|
type
|
|
IEditorCuentaEspecial = interface
|
|
['{3CDABEA1-F952-4F35-8A31-279FFB7C31E4}']
|
|
function GetCuentaEspecial: IBizCuentaEspecial;
|
|
procedure SetCuentaEspecial(const Value: IBizCuentaEspecial);
|
|
property CuentaEspecial: IBizCuentaEspecial read GetCuentaEspecial write SetCuentaEspecial;
|
|
|
|
function ShowModal : Integer;
|
|
procedure Release;
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
end.
|