From fa26fad600112c08013241e2b18e2e97956dce30 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 24 Oct 2024 20:45:42 +0200 Subject: [PATCH] feat(API): ProfileObjStateController initialisiert. --- .../Controllers/ProfileObjStateController.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 WorkFlow.API/Controllers/ProfileObjStateController.cs diff --git a/WorkFlow.API/Controllers/ProfileObjStateController.cs b/WorkFlow.API/Controllers/ProfileObjStateController.cs new file mode 100644 index 0000000..9142247 --- /dev/null +++ b/WorkFlow.API/Controllers/ProfileObjStateController.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.ProfileObjState; +using WorkFlow.Domain.Entities; + +namespace WorkFlow.API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + [Authorize] + public class ProfileObjStateController(ILogger logger, IProfileObjStateService service) : CRUDControllerBase(logger, service) + { + } +} \ No newline at end of file