50 lines
1.3 KiB
C#
50 lines
1.3 KiB
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 VersioningWebSite
|
|
{
|
|
// Scenario
|
|
// V1 of the API is read-only and unconstrained
|
|
// V2 of the API is constrained
|
|
public class TicketsController : Controller
|
|
{
|
|
private readonly TestResponseGenerator _generator;
|
|
|
|
public TicketsController(TestResponseGenerator generator)
|
|
{
|
|
_generator = generator;
|
|
}
|
|
|
|
[HttpGet("/Tickets")]
|
|
public IActionResult Get()
|
|
{
|
|
return _generator.Generate();
|
|
}
|
|
|
|
[HttpGet("/Tickets/{id}")]
|
|
public IActionResult GetById(int id)
|
|
{
|
|
return _generator.Generate();
|
|
}
|
|
|
|
[VersionPost("/Tickets", versionRange: "2")]
|
|
public IActionResult Post()
|
|
{
|
|
return _generator.Generate();
|
|
}
|
|
|
|
[VersionPut("/Tickets/{id}", versionRange: "2")]
|
|
public IActionResult Put(int id)
|
|
{
|
|
return _generator.Generate();
|
|
}
|
|
|
|
[VersionDelete("/Tickets/{id}", versionRange: "2")]
|
|
public IActionResult Delete(int id)
|
|
{
|
|
return _generator.Generate();
|
|
}
|
|
}
|
|
} |