interface Load {
    fun load(): List<SoftwareEngineer>
}

interface LoadAndSave : Load {
    fun save(engineer: SoftwareEngineer)
}