/
artemkislov
/
ural-code-hackathon
Обзор
Документация
Войти
/
artemkislov
/
ural-code-hackathon
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
backend/WebApi/Controllers/StudentsController.cs
19 строк
416 B
Artem Kislov
init commit
21 сен 2024, 21:25
21 сен 2024, 21:25
26d0b9e
Код
Авторство
О чём код?
using Microsoft.AspNetCore.Mvc; namespace WebApi.Controllers; [ApiController] [Route("api/students")] public class StudentsController : ControllerBase { private readonly ILogger<StudentsController> logger; public StudentsController(ILogger<StudentsController> logger) { this.logger = logger; } [HttpGet] public IEnumerable<StudentDto> Get() => Array.Empty<StudentDto>(); }