package org.university.core;

public interface AccountingInterface {
	
	double getCurrentIncome();
	
	AbstractEmployee getEmployee();
    
    
}