package com.blogspot.toomuchcoding.book.chapter9.InjectingWithGuice; import com.blogspot.toomuchcoding.person.Person; public interface TaxService { void transferTaxFor(Person person); }