Examples of Repertuar


Examples of pl.edu.prz.kia.ntp.M2.entity.Repertuar

    /**
     * @param repertuar
     * @return
     */
    public static Repertuar toEJB(RepertuarDTO repertuar) {
        Repertuar entity = new Repertuar();
        entity.setId_repertuaru(repertuar.getId_repertuaru());
        entity.setWyswietlany_do(repertuar.getWyswietlany_do());
        entity.setWyswietlany_od(repertuar.getWyswietlany_od());
        entity.setFilm(repertuar.getFilm());
        return entity;
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.M2.entity.Repertuar

    /**
     * @param GatunekFilmu
     */
    public void removeRepertuar(Repertuar repertuar)
    {
        Repertuar bil = em.find(Repertuar.class, repertuar.getId_repertuaru());
        em.remove(bil);
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.M2.entity.Repertuar

        return repertuar;
    }
   
    public void addRepertuar(RepertuarDTO repertuar) {
        M2Service service;
        Repertuar entity;
        service = new M2Service(em);
        entity = ConversionService.toEJB(repertuar);
        service.addRepertuar(entity);
     
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.M2.entity.Repertuar

     
    }

    public void updateRepertuar(RepertuarDTO repertuar) {
        M2Service service;
        Repertuar entity;
        service = new M2Service(em);
        entity = ConversionService.toEJB(repertuar);
        service.updateRepertuar(entity);
    }
View Full Code Here

Examples of pl.edu.prz.kia.ntp.M2.entity.Repertuar

        service.updateRepertuar(entity);
    }

    public void removeRepertuar(RepertuarDTO repertuar) {
        M2Service service;
        Repertuar entity;
        service = new M2Service(em);
        entity = ConversionService.toEJB(repertuar);
        service.removeRepertuar(entity);
    }
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.