Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ public class Project {
private String id;
private String projectTitle;
private String status;
private LocalDate startDate;
private LocalDate endDate;
private String startDate;
private String endDate;
private String details;

public Project(String id, String projectTitle, String status, LocalDate startDate, LocalDate endDate, String details) {
public Project(String id, String projectTitle, String status, String startDate, String endDate, String details) {
this.id = id;
this.projectTitle = projectTitle;
this.status = status;
Expand Down Expand Up @@ -49,19 +49,19 @@ public void setStatus(String status) {
this.status = status;
}

public LocalDate getStartDate() {
public String getStartDate() {
return startDate;
}

public void setStartDate(LocalDate startDate) {
public void setStartDate(String startDate) {
this.startDate = startDate;
}

public LocalDate getEndDate() {
public String getEndDate() {
return endDate;
}

public void setEndDate(LocalDate endDate) {
public void setEndDate(String endDate) {
this.endDate = endDate;
}

Expand Down