Skip to content

Commit

Permalink
Code refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
ElviraMjeshtri committed Aug 26, 2023
1 parent 94db412 commit 19c0b44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.amigoscode;

import com.amigoscode.api.patient.Gender;
import com.amigoscode.domain.patient.Gender;
import com.amigoscode.domain.patient.Patient;
import com.amigoscode.domain.patient.PatientService;
import lombok.extern.java.Log;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.amigoscode.domain.patient;

import com.amigoscode.api.patient.Gender;
import lombok.*;

import java.time.ZonedDateTime;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.amigoscode;


import com.amigoscode.domain.patient.Gender;
import com.amigoscode.domain.patient.Patient;

import java.time.ZoneId;
Expand All @@ -17,6 +18,7 @@ public static Patient create() {
null,
"John Doe",
"mrn" + patientSequence,
Gender.MALE,
ZonedDateTime.of(2003, 6, 17, 12, 40, 00, 0, ZoneId.of("UTC")),
ZonedDateTime.of(2023, 6, 17, 12, 40, 00, 0, ZoneId.of("UTC")).plusDays(patientSequence)
);
Expand Down

0 comments on commit 19c0b44

Please sign in to comment.