Package sn.unitech.stock.entity

Examples of sn.unitech.stock.entity.SysPiece


 
  public void clickPersitClient(ActionEvent e){
    ParamsUser paramUser=getParamsUser();
    SysAdherent adherent=paramUser.getAdherent();
    this.client.setSysAdherent(adherent);
    this.client.setSysPiece(new SysPiece(this.cproperties.getTypePiece()));
    this.client.setSysTypcli(new SysTypcli(this.cproperties.getTypeClient(),adherent.getIdAdherent()));
    if(clientM.persistClient(client)){
      this.cmessages.setSaveMessage(ToolsBean.getToolsBean().getBundleMessage("msgSucces"));
      this.client=new Client();
    }else{
View Full Code Here




  public static void main(String[] args) {
    // TODO Auto-generated method stub
    SysPiece piece=new SysPiece();
    piece.setLibelle("fffk");
    System.out.println(new SysPieceDao().persist(piece,null));
  }
View Full Code Here

TOP

Related Classes of sn.unitech.stock.entity.SysPiece

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.