diff --git a/API/Controllers/ColorController.cs b/API/Controllers/ColorController.cs new file mode 100644 index 0000000..ad0d640 --- /dev/null +++ b/API/Controllers/ColorController.cs @@ -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 + { + public ColorController(ILogger logger, UserService userService, ColorService service) : base(logger, userService, service) + { + } + } +}