git-svn-id: https://192.168.0.254/svn/Proyectos.AbetoDesign_FactuGES/trunk@2 93f398dd-4eb6-7a46-baf6-13f46f578da2
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.
|