using Flexitime.Objects; using Microsoft.AspNetCore.Mvc; using System; using System.Collections.Generic; namespace FlexitimeAPI.Controllers { [Route("api/[controller]")] [ApiController] public class TeamsController : ControllerBase { [HttpGet] public List GetTeams() { throw new NotImplementedException(); } [HttpGet] [Route("{id}")] public Team GetTeam(int id) { throw new NotImplementedException(); } [HttpPost] public Team CreateTeam(Team team) { throw new NotImplementedException(); } [HttpPut] public Team UpdateTeam(Team team) { throw new NotImplementedException(); } } }