30 lines
829 B
C#
30 lines
829 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace RoutingWebSite
|
|
{
|
|
// This controller is reachable via traditional routing.
|
|
[Area("Travel")]
|
|
public class FlightController
|
|
{
|
|
private readonly TestResponseGenerator _generator;
|
|
|
|
public FlightController(TestResponseGenerator generator)
|
|
{
|
|
_generator = generator;
|
|
}
|
|
|
|
public IActionResult Index()
|
|
{
|
|
return _generator.Generate("/Travel/Flight", "/Travel/Flight/Index");
|
|
}
|
|
|
|
[HttpPost]
|
|
public IActionResult BuyTickets()
|
|
{
|
|
return _generator.Generate("/Travel/Flight/BuyTickets");
|
|
}
|
|
}
|
|
} |