Deleted file from evaluation

This commit is contained in:
priyeshmashelkar 2018-07-02 12:29:05 +01:00 committed by GitHub
parent 9da2a97419
commit 3e3e577eee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
package com.baeldung.reactive.model;
import java.math.BigDecimal;
public class Stock {
private String code;
private BigDecimal price;
public Stock(String code, BigDecimal price) {
this.code = code;
this.price = price;
}
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
}