namespace Core.Ports { public interface IPersistenceService { void Save(string key, int value); int Load(string key, int defaultValue = 0); } }