FlexitimeTracker/FlexitimeUI/FlexitimeAPI/Controllers/TeamsController.cs
2023-04-11 20:17:20 +01:00

38 lines
832 B
C#

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<Team> 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();
}
}
}