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.
LuisLeon_FactuGES/Modulos/Recibos de proveedor/Controller/View/uIEditorFechaPagoProveedor.pas

19 lines
376 B
ObjectPascal

unit uIEditorFechaPagoProveedor;
interface
uses
uEditorBasico;
type
IEditorFechaPagoProveedor = interface(IEditorBasico)
['{EDD78459-4C97-4C4A-92A3-25536D74AD18}']
function GetFechaPago: TDateTime;
procedure SetFechaPago(const Value: TDateTime);
property FechaPago: TDateTime Read GetFechaPago write SetFechaPago;
end;
implementation
end.