Interface IPermissionMapper

All Superinterfaces:
GenericMapper<Permission,PermissionResponseDTO,PermissionRequestDTO>
All Known Implementing Classes:
PermissionMapperImpl

public interface IPermissionMapper extends GenericMapper<Permission,PermissionResponseDTO,PermissionRequestDTO>
Mapper interface for converting between Permission entities and their corresponding request and response DTOs.

Extends the generic GenericMapper, inheriting methods for:

Implementations of this interface should focus solely on data transformation, keeping mapping logic consistent and centralized for maintainability across the application layers.
See Also: