refactor: CRUD-Services und -Interfaces für alle außer Module und ModuleOfUser von IService und Service vererbt

- Vererbung von IService und Service auf alle CRUD-Services und -Interfaces angewendet, mit Ausnahme von Module und ModuleOfUser.
This commit is contained in:
Developer 02
2024-08-14 19:08:43 +02:00
parent a5002a3038
commit d6b08c3c30
6 changed files with 9 additions and 8 deletions

View File

@@ -9,7 +9,7 @@ using Microsoft.Extensions.Localization;
namespace DigitalData.UserManager.Application.Services
{
public class UserService : CRUDService<IUserRepository, UserCreateDto, UserReadDto, UserUpdateDto, User, int>, IUserService
public class UserService : BaseService<IUserRepository, UserCreateDto, UserReadDto, UserUpdateDto, User>, IUserService
{
private readonly IStringLocalizer<Resource> _localizer;
public UserService(IUserRepository repository, IStringLocalizer<Resource> localizer, IMapper mapper) : base(repository, mapper)