Examples of BiletDTO


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

        this.bilety = bilety;
    }
   
    public Object createEmptyObject()
    {
        return new BiletDTO();   
    }
View Full Code Here

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

    /**
     * @param bilet
     * @return
     */
    public static BiletDTO toDTO(Bilet bilet) {
        BiletDTO dto = new BiletDTO();
        dto.setId_biletu(bilet.getId_biletu());
        dto.setId_zamowienia(bilet.getId_zamowienia());
        dto.setId_typu_biletu(bilet.getId_typu_biletu());
        dto.setId_miejsca(bilet.getId_miejsca());
        return dto;
    }
View Full Code Here

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

     */
    public static List<BiletDTO> biletListToDTO(List<Bilet> bilet) {
        List<BiletDTO> dtoList;
        dtoList = new ArrayList<BiletDTO>();
        for(Bilet entity: bilet) {
            BiletDTO dto;
            dto = ConversionService.toDTO(entity);
            dtoList.add(dto);
        }
        return dtoList;
    }
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.