/**
   * Creates a new tra cuu thu tuc hanh chinh with the primary key. Does not add the tra cuu thu tuc
   * hanh chinh to the database.
   *
   * @param id the primary key for the new tra cuu thu tuc hanh chinh
   * @return the new tra cuu thu tuc hanh chinh
   */
  public TraCuuThuTucHanhChinh create(long id) {
    TraCuuThuTucHanhChinh traCuuThuTucHanhChinh = new TraCuuThuTucHanhChinhImpl();

    traCuuThuTucHanhChinh.setNew(true);
    traCuuThuTucHanhChinh.setPrimaryKey(id);

    return traCuuThuTucHanhChinh;
  }