Package lv.odylab.evemanage.integration.evedb.dto

Examples of lv.odylab.evemanage.integration.evedb.dto.TypeMaterialDto


        return materialDto;
    }

    @Override
    public TypeMaterialDto map(InvTypeMaterialDto invTypeMaterialDto, Class<TypeMaterialDto> typeMaterialDtoClass) {
        TypeMaterialDto typeMaterialDto = new TypeMaterialDto();
        typeMaterialDto.setMaterialTypeID(invTypeMaterialDto.getMaterialTypeID());
        typeMaterialDto.setMaterialTypeName(invTypeMaterialDto.getMaterialTypeName());
        typeMaterialDto.setMaterialTypeCategoryID(invTypeMaterialDto.getMaterialTypeCategoryID());
        typeMaterialDto.setQuantity(invTypeMaterialDto.getQuantity());
        typeMaterialDto.setMaterialTypeGraphicIcon(invTypeMaterialDto.getMaterialTypeIcon());
        return typeMaterialDto;
    }
View Full Code Here

TOP

Related Classes of lv.odylab.evemanage.integration.evedb.dto.TypeMaterialDto

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.