You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
using System.Collections.Generic;
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Server.Models.Database;
|
|
|
|
using Server.Services.Interfaces;
|
|
|
|
|
|
|
|
namespace Server.Controllers.V2;
|
|
|
|
|
|
|
|
[ApiController]
|
|
|
|
[ApiExplorerSettings(GroupName = "v2")]
|
|
|
|
[Route("/v2/[controller]")]
|
|
|
|
public class StationsController : Controller {
|
|
|
|
private IDatabase Database { get; }
|
|
|
|
|
|
|
|
public StationsController(IDatabase database) {
|
|
|
|
this.Database = database;
|
|
|
|
}
|
|
|
|
|
|
|
|
[HttpGet("")]
|
|
|
|
public ActionResult<IEnumerable<StationListing>> ListStations() {
|
|
|
|
return Ok(Database.Stations);
|
|
|
|
}
|
|
|
|
}
|