From 6da7f33437578ca979225109a66173ff9e8e78ff Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 24 Oct 2024 20:43:37 +0200 Subject: [PATCH] feat(API): ProfileControlsTF initialisiert. --- .../Controllers/ProfileControlsTFController.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 WorkFlow.API/Controllers/ProfileControlsTFController.cs diff --git a/WorkFlow.API/Controllers/ProfileControlsTFController.cs b/WorkFlow.API/Controllers/ProfileControlsTFController.cs new file mode 100644 index 0000000..9deeb2e --- /dev/null +++ b/WorkFlow.API/Controllers/ProfileControlsTFController.cs @@ -0,0 +1,16 @@ +using DigitalData.Core.API; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using WorkFlow.Application.Contracts; +using WorkFlow.Application.DTO.ProfileControlsTF; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + [Authorize] + public class ProfileControlsTFController(ILogger logger, IProfileControlsTFService service) : CRUDControllerBase(logger, service) + { + } +} \ No newline at end of file