-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTeacherController.cs
57 lines (46 loc) · 1.69 KB
/
TeacherController.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using MediatR;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using CleanArchCourse.Application.Features.TeacherOperations.Command.CreateTeacher;
using CleanArchCourse.Application.Features.TeacherOperations.Command.DeleteTeacher;
using CleanArchCourse.Application.Features.TeacherOperations.Command.UpdateTeacher;
using CleanArchCourse.Application.Features.TeacherOperations.Queries.GetAllTeacher;
using CleanArchCourse.Application.Features.TeacherOperations.Queries.GetByIdTeacher;
namespace CleanArchCourse.WebAPI.Controllers
{
[Route("api/[controller]s")]
[ApiController]
public class TeacherController : ControllerBase
{
private readonly IMediator _mediator;
public TeacherController(IMediator mediator)
{
_mediator = mediator;
}
[HttpGet]
public async Task<IActionResult> GetAll()
{
return Ok(await _mediator.Send(new GetAllTeacherRequest()));
}
[HttpGet("{id}")]
public async Task<IActionResult> GetById(int id)
{
return Ok(await _mediator.Send(new GetByIdTeacherRequest {Id = id}));
}
[HttpPost]
public async Task<IActionResult> Create([FromBody] CreateTeacherRequest request)
{
return Ok(await _mediator.Send(request));
}
[HttpPut]
public async Task<IActionResult> Update([FromBody] UpdateTeacherRequest request)
{
return Ok(await _mediator.Send(request));
}
[HttpDelete("{id}")]
public async Task<IActionResult> Delete(int id)
{
return Ok(await _mediator.Send(new DeleteTeacherRequest() { Id = id }));
}
}
}