package com.vikingcloud.horsetrack.command; import com.vikingcloud.horsetrack.AutomatedTellerMachine; public class RestockCommand implements Command { @Override public void execute(AutomatedTellerMachine atm) { atm.restock(); } }