-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCategorySubController.cs
57 lines (46 loc) · 1.77 KB
/
CategorySubController.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.CategorySubOperetions.Commands.CreateCategorySub;
using CleanArchCourse.Application.Features.CategorySubOperetions.Commands.DeleteCategorySub;
using CleanArchCourse.Application.Features.CategorySubOperetions.Commands.UpdateCategorySub;
using CleanArchCourse.Application.Features.CategorySubOperetions.Queries.GetAllCategorySub;
using CleanArchCourse.Application.Features.CategorySubOperetions.Queries.GetByIdCategorySub;
namespace CleanArchCourse.WebAPI.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class CategorySubController : ControllerBase
{
private readonly IMediator _mediator;
public CategorySubController(IMediator mediator)
{
_mediator = mediator;
}
[HttpGet]
public async Task<IActionResult> GetAll()
{
return Ok(await _mediator.Send(new GetAllCategorySubRequest()));
}
[HttpGet("{id}")]
public async Task<IActionResult> GetById(int id)
{
return Ok(await _mediator.Send(new GetByIdCategorySubRequest { Id = id }));
}
[HttpPost]
public async Task<IActionResult> Create([FromBody] CreateCategorySubRequest request)
{
return Ok(await _mediator.Send(request));
}
[HttpPut]
public async Task<IActionResult> Update([FromBody] UpdateCategorySubRequest request)
{
return Ok(await _mediator.Send(request));
}
[HttpDelete("{id}")]
public async Task<IActionResult> Delete(int id)
{
return Ok(await _mediator.Send(new DeleteCategorySubRequest {Id = id}));
}
}
}