Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.
Merged
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 @@ -63,14 +63,14 @@ public class TestResultResponse {
/**
* Timestamp of the SampleCollection (sc).
*/
private Long cs;
private Long sc;

/**
* Default constructor with sc null.
*/
public TestResultResponse setTestResult(Integer testResult) {
this.testResult = testResult;
this.cs = null;
this.sc = null;
return this;
}

Expand All @@ -79,7 +79,7 @@ public TestResultResponse setTestResult(Integer testResult) {
*/
public TestResultResponse setTestResult(Integer testResult,Long resultDate) {
this.testResult = testResult;
this.cs = resultDate;
this.sc = resultDate;
return this;
}
}