Ignore:
File:
1 edited

Legend:

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

    r9a180fd rada7108  
    55
    66import java.time.LocalDate;
     7import java.util.Date;
    78
    89@Data
     
    2627
    2728    @Column(name = "id_adopter", nullable = false)
    28     private Integer adopterId;
     29    private int adopterId;
    2930
    30     public Adoption(LocalDate startDate, LocalDate endDateFoster, boolean approved, Integer adopterId) {
     31    public Adoption(LocalDate startDate, LocalDate endDateFoster, boolean approved, int adopterId) {
    3132        this.startDate = startDate;
    3233        this.endDateFoster = endDateFoster;
Note: See TracChangeset for help on using the changeset viewer.