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.
22 lines
534 B
22 lines
534 B
using System.Collections.Generic; |
|
using System.Linq; |
|
using Microsoft.AspNetCore.Mvc; |
|
using Server.Services.Interfaces; |
|
|
|
namespace Server.Controllers.V1; |
|
|
|
[ApiController] |
|
[ApiExplorerSettings(GroupName = "v1")] |
|
[Route("/[controller]")] |
|
public class TrainsController : Controller { |
|
private IDatabase Database { get; } |
|
|
|
public TrainsController(IDatabase database) { |
|
this.Database = database; |
|
} |
|
|
|
[HttpGet("")] |
|
public ActionResult<IEnumerable<string>> ListTrains() { |
|
return Ok(Database.Trains.Select(train => train.Number)); |
|
} |
|
}
|
|
|