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.