38 lines
832 B
C#
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();
|
|
}
|
|
}
|
|
}
|