package com.blogspot.toomuchcoding.book.chapter2.common; import com.blogspot.toomuchcoding.person.Person; public interface TaxService { double getCurrentTaxFactorFor(Person person); }