feat: Die Schaltfläche zum Hinzufügen von Gruppen wurde abgeschlossen und zur gleichen Tabelle wie der Gruppenimport hinzugefügt.

This commit is contained in:
Developer 02
2024-08-01 13:39:30 +02:00
parent 2add7f94e8
commit 8340c717c9
8 changed files with 140 additions and 8 deletions

View File

@@ -8,6 +8,7 @@
bool? Active,
string? Comment,
string? AddedWho,
string? ChangedWho
string? ChangedWho,
int EcmFkId
);
}

View File

@@ -17,6 +17,11 @@ namespace DigitalData.UserManager.Application.Services
_localizer = localizer;
}
public override Task<DataResult<int>> CreateAsync(GroupCreateDto createDto)
{
return base.CreateAsync(createDto);
}
public async Task<DataResult<int>> CreateAsync(DirectoryGroupDto adGroup)
{
var group = _mapper.MapOrThrow<Group>(adGroup);