29 lines
828 B
C#
29 lines
828 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 contains actions mapped with a single controller-level route.
|
|
[Route("Blog/[action]/{postId?}")]
|
|
public class BlogController
|
|
{
|
|
private readonly TestResponseGenerator _generator;
|
|
|
|
public BlogController(TestResponseGenerator generator)
|
|
{
|
|
_generator = generator;
|
|
}
|
|
|
|
public IActionResult ShowPosts()
|
|
{
|
|
return _generator.Generate("/Blog/ShowPosts");
|
|
}
|
|
|
|
public IActionResult Edit(int postId)
|
|
{
|
|
return _generator.Generate("/Blog/Edit/" + postId);
|
|
}
|
|
}
|
|
} |