Created ColorController

This commit is contained in:
quentin 2024-05-20 10:47:04 -05:00
parent cce57a4aec
commit 08efea943c

View 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)
{
}
}
}