api/src/main/java/org/apache/fineract/cn/group/api/v1/domain/Group.java [96:112]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.members = members;
  }

  public String getOffice() {
    return this.office;
  }

  public void setOffice(final String office) {
    this.office = office;
  }

  public String getAssignedEmployee() {
    return this.assignedEmployee;
  }

  public void setAssignedEmployee(final String assignedEmployee) {
    this.assignedEmployee = assignedEmployee;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/group/internal/repository/GroupEntity.java [127:143]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    this.members = members;
  }

  public String getOffice() {
    return this.office;
  }

  public void setOffice(final String office) {
    this.office = office;
  }

  public String getAssignedEmployee() {
    return this.assignedEmployee;
  }

  public void setAssignedEmployee(final String assignedEmployee) {
    this.assignedEmployee = assignedEmployee;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



