return corporationSheetDto;
}
@Override
public MarketStatDto map(MarketStatType marketStatType, Class<MarketStatDto> marketStatDtoClass) {
MarketStatDto marketStatDto = new MarketStatDto();
marketStatDto.setTypeID(marketStatType.getTypeID());
marketStatDto.setMedian(marketStatType.getAll().getMedian());
marketStatDto.setBuyMedian(marketStatType.getBuy().getMedian());
marketStatDto.setSellMedian(marketStatType.getSell().getMedian());
return marketStatDto;
}