This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Noviseda_FactuGES2/Source/Modulos/Recibos de cliente/Controller/View/uIEditorFechaPago.pas
2009-12-16 17:16:54 +00:00

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.