Examples of TypBiletuDTO


Examples of pl.edu.prz.kia.ntp.interfaceModule.DTO.M4.TypBiletuDTO

    /**
     * @param typ_biletu
     * @return
     */
    public static TypBiletuDTO toDTO(TypBiletu typ_biletu){
        TypBiletuDTO dto = new TypBiletuDTO();
        dto.setCena(typ_biletu.getCena());
        dto.setId_typu_biletu(typ_biletu.getId_typu_biletu());
        dto.setNazwa(typ_biletu.getNazwa());
        return dto;
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.interfaceModule.DTO.M4.TypBiletuDTO

     * @return
     */
    public static List<TypBiletuDTO> typBiletuListToDTO(List<TypBiletu> typ_biletu){
        List<TypBiletuDTO> dtoList = new ArrayList<TypBiletuDTO>();
        for (TypBiletu entity : typ_biletu){
            TypBiletuDTO dto;
            dto=ConversionService.toDTO(entity);
            dtoList.add(dto);
        }
        return dtoList;
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.interfaceModule.DTO.M4.TypBiletuDTO

    public List getList() {
        return this.typy;
    }
   
    public Object createEmptyObject() {
        return new TypBiletuDTO();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.