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

package jpa20vererbung;

import javax.persistence.Entity;

@Entity
public class Buch extends Produkt{

  public Buch(){
  super();
  }

  public Buch(String name, int lagermenge, float preis) {
    super(name, lagermenge, preis);
  }

  @Override
  public String toString(){
    return super.toString()+" Buch";
  }

}
