All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.labs64.netlicensing.domain.entity.ProductDiscount Maven / Gradle / Ivy

The newest version!
package com.labs64.netlicensing.domain.entity;

import java.math.BigDecimal;

public interface ProductDiscount extends Comparable {

    void setProduct(final Product product);

    Product getProduct();

    void setTotalPrice(final BigDecimal totalPrice);

    BigDecimal getTotalPrice();

    void setCurrency(final String currency);

    String getCurrency();

    void setAmountFix(final BigDecimal amountFix);

    BigDecimal getAmountFix();

    void setAmountPercent(final BigDecimal amountPercent);

    BigDecimal getAmountPercent();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy