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/Source/Modulos/Informes base/Controller/uInformeBaseController.pas
2007-07-10 17:33:08 +00:00

26 lines
475 B
ObjectPascal

unit uInformeBaseController;
interface
uses
Classes, SysUtils, uDADataTable, uControllerBase,
uBizInformes;
type
IInformeBaseController = interface(IObservador)
['{6D467C82-2D78-4ABF-97DD-62E13D419CCE}']
procedure Ver(AInformes : IBizInforme);
procedure Nuevo(AInformes : IBizInforme);
end;
// TInformeBaseController = class(TObservador, IInformeBaseController)
// end;
implementation
{ TInformeBaseController }
end.