You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
493 B
21 lines
493 B
using DataBase.Entity;
|
|
using DTO;
|
|
|
|
namespace ApiLeapHit.Mapper
|
|
{
|
|
public static class PlayerMapper
|
|
{
|
|
public static DTOPlayer ToDto(this Player player)
|
|
{
|
|
DTOPlayer dtoPlayer = new DTOPlayer()
|
|
{
|
|
playerId = player.playerId,
|
|
name = player.name,
|
|
nbBallTouchTotal = player.nbBallTouchTotal,
|
|
timePlayed = player.timePlayed
|
|
};
|
|
return dtoPlayer;
|
|
}
|
|
}
|
|
}
|