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/Formas de pago/Controller/View/uIEditorFormaPago.pas

23 lines
429 B
ObjectPascal

unit uIEditorFormaPago;
interface
uses
uBizFormasPago;
type
IEditorFormaPago = interface
['{3CDABEA1-F952-4F35-8A31-279FFB7C31E4}']
function GetFormaPago: IBizFormaPago;
procedure SetFormaPago(const Value: IBizFormaPago);
property FormaPago: IBizFormaPago read GetFormaPago write SetFormaPago;
function ShowModal : Integer;
procedure Release;
end;
implementation
end.