chore: Aktualisierung von DigitalData.Core.Application und UserManager.Application auf 2.0.0

- Aktualisiert auf Dienste als aktuelle Core.Application
This commit is contained in:
Developer 02
2025-03-10 10:53:40 +01:00
parent e28f4560d6
commit b76043fa24
16 changed files with 23 additions and 22 deletions

View File

@@ -8,8 +8,8 @@ using WorkFlow.Infrastructure.Contracts;
namespace WorkFlow.Application.Services
{
public class ProfileService(IProfileRepository repository, AutoMapper.IMapper mapper)
: CRUDService<IProfileRepository, ProfileCreateDto, ProfileDto, ProfileUpdateDto, Profile, int>(repository, mapper),
IProfileService, ICRUDService<ProfileCreateDto, ProfileDto, ProfileUpdateDto, Profile, int>
: CRUDService<IProfileRepository, ProfileCreateDto, ProfileDto, Profile, int>(repository, mapper),
IProfileService, ICRUDService<ProfileCreateDto, ProfileDto, Profile, int>
{
}
}