/// <inheritdoc /> public string GetForLevelAndLanguage(CoronaStopLightLevel status, string culture) { return(culture switch { "de-AT" => German(status), _ => English(status) });
public CommuneCoronaStopLightStatus(string name, string communeId, CoronaStopLightLevel warningLevel) { Name = name; CommuneId = communeId; WarningLevel = warningLevel; }