Package AlMaGe

Source Code of AlMaGe.PersIDGehAus

package AlMaGe;

import java.sql.SQLException;

import AlMaGe.Calculate;

public class PersIDGehAus{
  private int persID;
  private int gehAusID;
  private Calculate abrechnung;
 
  public PersIDGehAus(int persID, int gehAusID) throws InstantiationException, IllegalAccessException, ClassNotFoundException, SQLException {
    this.persID = persID;
    this.gehAusID = gehAusID;
    this.abrechnung = new Calculate(getPersID());
  }
 
  public int getPersID(){
    return persID;
  }
 
  public int getGehAusID(){
    return gehAusID+1;
  }
 
  public Calculate getAbrechnungsDaten(){
    return abrechnung;
  }
 
  @Override
  public String toString() {
    return "PersID: "+getPersID()+" GehAusID: "+getGehAusID();
  }
}
TOP

Related Classes of AlMaGe.PersIDGehAus

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.