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.
LOLProject/Sources/APILOL/Mapper/ChampionMapper.cs

23 lines
466 B

using DTO;
using Model;
namespace APILOL.Mapper
{
public static class ChampionMapper
{
public static ChampionDTO ToDto(this Champion champion)
{
return new ChampionDTO()
{
Name = champion.Name,
Bio = champion.Bio,
};
}
public static Champion ToModel(this ChampionDTO champion)
{
return new Champion(champion.Name);
}
}
}