using System;
using System.Threading.Tasks;
using InternshipSystem.Api.Result;
using InternshipSystem.Core;
using InternshipSystem.Repository;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace InternshipSystem.Api.Controllers
{
[Route("edition")]
public class EditionController : ControllerBase
{
private InternshipDbContext Context { get; }
public EditionController(InternshipDbContext context)
{
Context = context;
}
///
/// Get current edition parameters
///
/// Parameters of edition registered for by student
/// This action is only available for authorized student registered for current edition
///
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task> GetCurrentEdition() =>
throw new NotImplementedException();
}
}