Created ColorController
This commit is contained in:
parent
cce57a4aec
commit
08efea943c
19
API/Controllers/ColorController.cs
Normal file
19
API/Controllers/ColorController.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using API.Authentication.Interfaces;
|
||||
using API.DTO.Base;
|
||||
using API.DTO.Base.Update;
|
||||
using API.Services;
|
||||
using DAL.Models;
|
||||
using DAL.Models.Audits;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace API.Controllers
|
||||
{
|
||||
[ApiController]
|
||||
[Route("api/v1/[controller]")]
|
||||
public class ColorController : CRUDBase<ColorController, ColorDTO, ColorUpdateDTO, Color, AuditColor, IColorAuthentication, ColorService>
|
||||
{
|
||||
public ColorController(ILogger<ColorController> logger, UserService userService, ColorService service) : base(logger, userService, service)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user