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

fitlibraryGeneric.eg.rentEz.Rental Maven / Gradle / Ivy

Go to download

FitLibrary provides general-purpose fixtures (and runners) for storytests with Fit and FitNesse.

The newest version!
package fitlibraryGeneric.eg.rentEz;

public class Rental {
	private RentalItemType rentalItemType;
	private int count;
	private DateRange dateRange;
	
	public int getCount() {
		return count;
	}
	public void setCount(int count) {
		this.count = count;
	}
	public DateRange getDateRange() {
		return dateRange;
	}
	public void setDateRange(DateRange dateRange) {
		this.dateRange = dateRange;
	}
	public RentalItemType getRentalItemType() {
		return rentalItemType;
	}
	public void setRentalItemType(RentalItemType item) {
		this.rentalItemType = item;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy