Ignore:
Timestamp:
03/05/23 18:01:28 (16 months ago)
Author:
GitHub <noreply@…>
Branches:
main
Children:
c3278ac, fdd7961
Parents:
f194b4e (diff), 5f53114 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Filip Chorbeski <86695898+FilipChorbeski@…> (03/05/23 18:01:28)
git-committer:
GitHub <noreply@…> (03/05/23 18:01:28)
Message:

Merge pull request #8 from SazdovaEkaterina/adopting-a-pet

Adopting a Pet

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Adoption.java

    rf194b4e r8b7dd7f  
    55
    66import java.time.LocalDate;
    7 import java.util.Date;
    87
    98@Data
     
    2726
    2827    @Column(name = "id_adopter", nullable = false)
    29     private int adopterId;
     28    private Integer adopterId;
    3029
    31     public Adoption(LocalDate startDate, LocalDate endDateFoster, boolean approved, int adopterId) {
     30    public Adoption(LocalDate startDate, LocalDate endDateFoster, boolean approved, Integer adopterId) {
    3231        this.startDate = startDate;
    3332        this.endDateFoster = endDateFoster;
Note: See TracChangeset for help on using the changeset viewer.