2007-09-04 17:44:53 +00:00
|
|
|
unit uIEditorGruposEmpleado;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
2008-11-10 14:52:10 +00:00
|
|
|
uEditorDBBase, uBizGruposEmpleado, uGruposEmpleadoController, uGUIBase;
|
2007-09-04 17:44:53 +00:00
|
|
|
|
|
|
|
|
type
|
2008-11-10 14:52:10 +00:00
|
|
|
IEditorGruposEmpleado = interface(ICustomEditor)
|
2007-09-04 17:44:53 +00:00
|
|
|
['{02981B41-9986-48D8-927C-A08A45168EDE}']
|
2008-11-10 11:29:57 +00:00
|
|
|
function ShowModal : Integer;
|
|
|
|
|
procedure Show;
|
|
|
|
|
|
2007-09-04 17:44:53 +00:00
|
|
|
function GetGruposEmpleado: IBizGrupoEmpleado;
|
|
|
|
|
procedure SetGruposEmpleado(const Value: IBizGrupoEmpleado);
|
|
|
|
|
property GruposEmpleado: IBizGrupoEmpleado read GetGruposEmpleado write SetGruposEmpleado;
|
|
|
|
|
|
|
|
|
|
function GetController : IGruposEmpleadoController;
|
|
|
|
|
procedure SetController (const Value : IGruposEmpleadoController);
|
|
|
|
|
property Controller : IGruposEmpleadoController read GetController write SetController;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
end.
|