Package kullanici.pojos

Examples of kullanici.pojos.Kullanici


      file.mkdir();
    }
  }

  private static void addAdminUser() {
    Kullanici kullanici = new Kullanici();
    kullanici.setKullaniciAdi(HibernateManager.getInstance()
        .getSystemName());
    kullanici.setSifre(HibernateManager.getInstance().getSystemName());
    kullanici.setRol("YÖNETİCİ");
    kullanici.setKasa("EVET");
    kullanici.setPersonel("EVET");
    kullanici.setStok("EVET");
    kullanici.setUrun("EVET");
    kullanici.setYonetici("EVET");
    kullanici.setFirma("EVET");
    kullanici.setKategori("EVET");
    kullanici.setMüsteri("EVET");
    kullanici.setEtiket("EVET");
    kullanici.setBanka("EVET");
    kullanici.setIstatistik("EVET");
    kullanici.setMuhasebe("EVET");
    kullanici.setCekYonetim("EVET");
    kullanici.setKasaYonetim("EVET");
    kullanici.setUrunSevk("EVET");
    kullanici.setKampanya("EVET");
    kullanici.setAdmin(false);
    HibernateManager.getInstance().save(kullanici);
  }
View Full Code Here

TOP

Related Classes of kullanici.pojos.Kullanici

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.