Interface MatchMapper

All Known Implementing Classes:
MatchMapperImpl

public interface MatchMapper
  • Method Summary

    Modifier and Type
    Method
    Description
    map(List<net.andresbustamante.yafoot.core.model.Match> matches)
    Bean list to DTO list mapping for a list of matches.
    map(net.andresbustamante.yafoot.core.model.Match match)
    Bean to DTO mapping for a match object.
    net.andresbustamante.yafoot.core.model.Match
    map(MatchForm match)
     
  • Method Details

    • map

      net.andresbustamante.yafoot.core.model.Match map(MatchForm match)
    • map

      Match map(net.andresbustamante.yafoot.core.model.Match match)
      Bean to DTO mapping for a match object.
      Parameters:
      match - Match bean to map
      Returns:
      Match DTO
    • map

      List<Match> map(List<net.andresbustamante.yafoot.core.model.Match> matches)
      Bean list to DTO list mapping for a list of matches.
      Parameters:
      matches - Matches list to map
      Returns:
      Resulting DTO list