git-svn-id: https://192.168.0.254/svn/Proyectos.AlonsoYSal_FactuGES2/trunk@6 40301925-124e-1c4e-b97d-170ad7a8785b
27 lines
728 B
ObjectPascal
27 lines
728 B
ObjectPascal
unit uIEditorFechaPago;
|
|
|
|
interface
|
|
|
|
uses
|
|
uEditorBasico;
|
|
|
|
type
|
|
IEditorFechaPago = interface(IEditorBasico)
|
|
['{977246EB-0801-4CEC-B37F-ABE2D2C9AFF4}']
|
|
function GetFechaPago: TDateTime;
|
|
procedure SetFechaPago(const Value: TDateTime);
|
|
property FechaPago: TDateTime Read GetFechaPago write SetFechaPago;
|
|
|
|
function GetIgnorarContabilidad: Integer;
|
|
procedure SetIgnorarContabilidad(const Value: Integer);
|
|
property IgnorarContabilidad: Integer Read GetIgnorarContabilidad write SetIgnorarContabilidad;
|
|
|
|
function GetIdSubCuenta: Integer;
|
|
procedure SetIdSubCuenta(const Value: Integer);
|
|
property IdSubCuenta: Integer Read GetIdSubCuenta write SetIdSubCuenta;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|