AbetoDesign_FactuGES2/Source/Modulos/Tarifas/Controller/View/uIEditorTarifas.pas
2020-05-06 10:08:12 +00:00

24 lines
591 B
ObjectPascal

unit uIEditorTarifas;
interface
uses
uEditorDBBase, uBizTarifas, uTarifasController;
type
IEditorTarifas = interface(IEditorDBBase)
['{E49B77E7-E90E-4B5F-AF9C-425EE7FC6C60}']
function GetTarifas: IBizTarifa;
procedure SetTarifas(const Value: IBizTarifa);
property Tarifas: IBizTarifa read GetTarifas write SetTarifas;
function GetController : ITarifasController;
procedure SetController (const Value : ITarifasController);
property Controller : ITarifasController read GetController write SetController;
end;
implementation
end.