Initial Commit

This commit is contained in:
2022-06-09 13:38:42 +02:00
commit 6c9e6f2823
22 changed files with 2808 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package model;
/**
* Interface GehaltBerechenbar
*
* @author (WES)
* @version (2022-01-27)
*/
public interface GehaltBerechenbar
{
public float berechneGehalt();
}