The connection between the provider of dependencies, @Module, and the classes requesting them through @Inject is made using @Component, which is an interface:
import javax.inject.Singleton;
import dagger.Component;
@Singleton
@Component(modules = {VehicleModule.class})
public interface Vehicl...