public static void Main(string[] args)
var bsonWithLed = new BsonDocument();
bsonWithLed.Add(new BsonElement("LED_Id", 5));
var LED_Id_default = (new BsonDocument().GetValue("LED_Id", "1")).AsInt32;
Console.WriteLine($"1 - First");
Console.WriteLine($"1 - Second");
var LED_Id_exists = (bsonWithLed.GetValue("LED_Id", "1"));
Console.WriteLine($"2 - First");
Console.WriteLine($"2 - Second");