Examples of SeansDTO


Examples of pl.edu.prz.kia.ntp.interfaceModule.DTO.M2.SeansDTO

    /**
     * @param seans
     * @return
     */
    public static SeansDTO toDTO(Seans seans){
        SeansDTO dto = new SeansDTO();
        dto.setData(seans.getData());
        dto.setGodzina(seans.getGodzina());
        dto.setId_seansu(seans.getId_seansu());
        dto.setRepertuar(seans.getRepertuar());
        return dto;
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.interfaceModule.DTO.M2.SeansDTO

     * @return
     */
    public static List<SeansDTO> seansListToDTO(List<Seans> seans){
        List<SeansDTO> dtoList = new ArrayList<SeansDTO>();
        for (Seans entity : seans){
            SeansDTO dto;
            dto=ConversionService.toDTO(entity);
            dtoList.add(dto);
        }
        return dtoList;
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.interfaceModule.DTO.M2.SeansDTO

        this.seanse = seanse;
    }
   
    public Object createEmptyObject()
    {
        return new SeansDTO();   
    }
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.