package com.sample;

public class Book
{
    private int bookid;
    private String name;
    private String author;
    private double price;

    public void Book()
    {

    }

    public String getName()
    {
        return this.name;
    }

    public String getAuthor()
    {
        return this.author;
    }

    public void setName(String name)
    {
        this.name = name;
    }

    public void setAuthor(String author)
    {
        this.author = author;
    }

    public void setPrice(double price)
    {
        this.price = price;
    }

    public double getPrice()
    {
        return this.price;
    }

    public void setBookid(int bookid)
    {
        this.bookid = bookid;
    }

    public int getBookid()
    {
        return this.bookid;
    }
}