Skip to content
Snippets Groups Projects
Select Git revision
  • 8a3e4543c2ce76ee588812a6ed85a71ef93ed9ef
  • main default protected
  • polish
3 results

draw.h

Blame
  • PurchaseRequest.java 668 B
    package com.hepia.demobdd.dto;
    
    public class PurchaseRequest {
        private Long userId;
        private Long productId;
        private int quantity;
    
        //#region getters
    
        public Long getUserId() {
            return userId;
        }
    
        public Long getProductId() {
            return productId;
        }
    
        public int getQuantity() {
            return quantity;
        }
    
        //#endregion
    
        //#region setters
    
        public void setUserId(Long userId) {
            this.userId = userId;
        }
    
        public void setProductId(Long productId) {
            this.productId = productId;
        }
    
        public void setQuantity(int quantity) {
            this.quantity = quantity;
        }
    
        //#endregion
    }