Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/cookbook/model/DostavaDTO.java
ree27685 ra226bc3 3 3 import java.time.LocalDateTime; 4 4 5 public record DostavaDTO (String recIme, String adresa, String sostojka , LocalDateTime vreme, String telefon){6 public DostavaDTO(String recIme, String adresa, String sostojka , LocalDateTime vreme, String telefon) {5 public record DostavaDTO (String recIme, String adresa, String sostojka){ 6 public DostavaDTO(String recIme, String adresa, String sostojka) { 7 7 this.recIme = recIme; 8 8 this.adresa = adresa; 9 9 this.sostojka = sostojka; 10 this.vreme = vreme;11 this.telefon = telefon;12 10 } 13 11 }
Note:
See TracChangeset
for help on using the changeset viewer.