/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package lmsjap;

/**
 *
 * @author bina
 */
public class Reservation {
private Item oneItem;
private Borrower b;

public String toString()
{ return ( b.toString() + '\n' + oneItem.toString() );
}

    public Reservation() {
    }

    public Item getOneItem() {
        return oneItem;
    }

    public void setOneItem(Item oneItem) {
        this.oneItem = oneItem;
    }

    public Borrower getB() {
        return b;
    }

    public void setB(Borrower b) {
        this.b = b;
    }

}
