namespace w230415_classes.Intf { public interface ICasino { bool AddGame(string name, double cash); bool ChangeGameState(string uid, bool isActive); IEnumerable GetActiveList(); IGame? GetGame(string uid); bool RemoveGame(string uid); } }