Ignore:
Timestamp:
10/01/22 22:57:41 (21 months ago)
Author:
Marko <Marko@…>
Branches:
master
Children:
47f4eaf
Parents:
fd5b100
Message:

Added few methods in PhoneOffer service

File:
1 edited

Legend:

Unmodified
Added
Removed
  • phonelux-backend/src/main/java/finki/it/phoneluxbackend/entities/Phone.java

    rfd5b100 rffd50db  
    4343    }
    4444
    45 
     45    public Phone(Long id, String brand, String model, String image_url, Integer total_offers, Integer lowestPrice) {
     46        this.id = id;
     47        this.brand = brand;
     48        this.model = model;
     49        this.image_url = image_url;
     50        this.total_offers = total_offers;
     51        this.lowestPrice = lowestPrice;
     52    }
    4653}
Note: See TracChangeset for help on using the changeset viewer.