delphimvcframework/samples/renders/WebModuleU.pas

41 lines
993 B
ObjectPascal
Raw Normal View History

2013-11-10 01:03:53 +01:00
unit WebModuleU;
interface
uses
System.SysUtils, System.Classes,
Web.HTTPApp, MVCFramework, FireDAC.Stan.Intf, FireDAC.Stan.Option,
FireDAC.Stan.Error, FireDAC.UI.Intf, FireDAC.Phys.Intf, FireDAC.Stan.Def,
FireDAC.Stan.Pool, FireDAC.Stan.Async, FireDAC.Phys, FireDAC.Stan.Param,
FireDAC.DatS, FireDAC.DApt.Intf, FireDAC.DApt, Data.DB, FireDAC.Comp.DataSet,
2014-03-06 14:20:57 +01:00
FireDAC.Comp.Client, FireDAC.Phys.IBBase, FireDAC.Phys.IB, FireDAC.Phys.FB;
2013-11-10 01:03:53 +01:00
type
TWebModule1 = class(TWebModule)
FDConnection1: TFDConnection;
qryCustomers: TFDQuery;
2014-03-06 14:20:57 +01:00
FDPhysFBDriverLink1: TFDPhysFBDriverLink;
2013-11-10 01:03:53 +01:00
procedure WebModuleCreate(Sender: TObject);
private
DMVC: TMVCEngine;
end;
var
WebModuleClass: TComponentClass = TWebModule1;
implementation
{$R *.dfm}
uses RenderSampleControllerU;
procedure TWebModule1.WebModuleCreate(Sender: TObject);
begin
DMVC := TMVCEngine.Create(self);
DMVC.AddController(TRenderSampleController);
end;
end.