Der generische Typparameter 'ControllerType' wurde entfernt, da er nicht benötigt wird.

This commit is contained in:
Developer 02
2024-06-10 16:32:05 +02:00
parent 0f47b5a8f6
commit 42deb8a2f5
6 changed files with 6 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ using Microsoft.AspNetCore.Mvc;
namespace DigitalData.UserManager.API.Controllers
{
[Authorize]
public class GroupController : CRUDControllerBase<GroupController, IGroupService, IGroupRepository, GroupCreateDto, GroupReadDto, GroupUpdateDto, Group, int>
public class GroupController : CRUDControllerBase<IGroupService, IGroupRepository, GroupCreateDto, GroupReadDto, GroupUpdateDto, Group, int>
{
public GroupController(ILogger<GroupController> logger, IGroupService service) : base(logger, service)
{