mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
1a165ad571
ADD support for mapping of TTimeStamp type
94 lines
1.8 KiB
ObjectPascal
94 lines
1.8 KiB
ObjectPascal
unit TestControllersU;
|
|
|
|
interface
|
|
|
|
uses MVCFramework.Commons,
|
|
System.Classes,
|
|
Web.HTTPApp,
|
|
MVCFramework;
|
|
|
|
type
|
|
|
|
[MVCPath('/')]
|
|
TSimpleController = class(TMVCController)
|
|
private
|
|
FCalledActions: TStringList;
|
|
procedure AddCall(ActionName: String);
|
|
|
|
protected
|
|
procedure MVCControllerAfterCreate; override;
|
|
procedure MVCControllerBeforeDestroy; override;
|
|
|
|
public
|
|
[MVCPath('/')]
|
|
procedure Index(Context: TWebContext);
|
|
[MVCPath('/orders')]
|
|
procedure Orders(Context: TWebContext);
|
|
|
|
[MVCHTTPMethod([httpGET])]
|
|
[MVCPath('/orders/($ordernumber)')]
|
|
procedure OrderNumber(Context: TWebContext);
|
|
|
|
[MVCHTTPMethod([httpPOST, httpPUT])]
|
|
[MVCPath('/orders/($ordernumber)')]
|
|
procedure UpdateOrderNumber(Context: TWebContext);
|
|
|
|
property CalledActions: TStringList read FCalledActions; // only for tests
|
|
end;
|
|
|
|
TNotSoSimpleController = class(TMVCController)
|
|
public
|
|
procedure Method1(CTX: TWebContext);
|
|
end;
|
|
|
|
implementation
|
|
|
|
{ TSimpleController }
|
|
|
|
procedure TSimpleController.AddCall(ActionName: String);
|
|
begin
|
|
FCalledActions.Add(ActionName);
|
|
end;
|
|
|
|
procedure TSimpleController.Index(Context: TWebContext);
|
|
begin
|
|
AddCall('Index');
|
|
end;
|
|
|
|
procedure TSimpleController.MVCControllerAfterCreate;
|
|
begin
|
|
inherited;
|
|
FCalledActions := TStringList.Create;
|
|
end;
|
|
|
|
procedure TSimpleController.MVCControllerBeforeDestroy;
|
|
begin
|
|
FCalledActions.Free;
|
|
inherited;
|
|
|
|
end;
|
|
|
|
procedure TSimpleController.Orders(Context: TWebContext);
|
|
begin
|
|
|
|
end;
|
|
|
|
procedure TSimpleController.UpdateOrderNumber(Context: TWebContext);
|
|
begin
|
|
|
|
end;
|
|
|
|
procedure TSimpleController.OrderNumber(Context: TWebContext);
|
|
begin
|
|
|
|
end;
|
|
|
|
{ TNotSoSimpleController }
|
|
|
|
procedure TNotSoSimpleController.Method1(CTX: TWebContext);
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|