CountryMapper
public static class CountryMapper
Namespace
Methods
CountryEntitiesToBasicDtos
public static IEnumerable<CountryBasicDto> CountryEntitiesToBasicDtos(
IEnumerable<CountryReadOnly> entities)
CountryEntitiesToBasicDtos<TDto>
public static IEnumerable<TDto> CountryEntitiesToBasicDtos<TDto>(
IEnumerable<CountryReadOnly> entities)
where TDto : CountryBasicDto, new()
CountryEntityToBasicDto<TDto>
public static TDto CountryEntityToBasicDto<TDto>(CountryReadOnly entity, TDto dto = default(TDto))
where TDto : CountryBasicDto, new()
CountryEntityToEditDto
public static CountryEditDto CountryEntityToEditDto(CountryReadOnly entity,
CountryEditDto dto = null)
CountrySaveDtoToEntity
public static Country CountrySaveDtoToEntity(CountrySaveDto dto, Country entity)