Interface IAdvertiserMapper

All Superinterfaces:
GenericMapper<Advertiser,AdvertiserResponseDTO,AdvertiserRequestDTO>
All Known Implementing Classes:
AdvertiserMapperImpl

public interface IAdvertiserMapper extends GenericMapper<Advertiser,AdvertiserResponseDTO,AdvertiserRequestDTO>
Mapper interface for converting between Advertiser 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: