/src/main/java/br/com/tiagogarcia/domain/ResumeCart.java

https://bitbucket.org/tgarcialemos/prova · Java · 27 lines · 17 code · 10 blank · 0 comment · 0 complexity · b133f9845c5a5956b0910afd5a3ba5e0 MD5 · raw file

  1. package br.com.tiagogarcia.domain;
  2. public class ResumeCart {
  3. private Long id;
  4. private Double total;
  5. public Long getId() {
  6. return id;
  7. }
  8. public void setId(Long id) {
  9. this.id = id;
  10. }
  11. public Double getTotal() {
  12. return total;
  13. }
  14. public void setTotal(Double total) {
  15. this.total = total;
  16. }
  17. }