git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@69 0c75b7a4-871f-7646-8a2f-f78d34cc349f
19 lines
358 B
ObjectPascal
19 lines
358 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;
|
|
end;
|
|
|
|
implementation
|
|
|
|
end.
|