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 UserRepService : CRUDService<IUserRepRepository, UserRepCreateDto, UserRepReadDto, UserRepUpdateDto, UserRep, int>, IUserRepService
public class UserRepService : BaseService<IUserRepRepository, UserRepCreateDto, UserRepReadDto, UserRepUpdateDto, UserRep>, IUserRepService
{
public UserRepService(IUserRepRepository repository, IStringLocalizer<Resource> localizer, IMapper mapper) : base(repository, mapper)
{