/// <summary>
 /// Update text with message color defined as green/yellow/red/ for success/warning/failure
 /// </summary>
 /// <param name="Text">Message</param>
 /// <param name="tom">Type of Message</param>
 public static void UdpateStatusTextWithStatus(string Text, TypeOfMessage tom)
 {
     if (sf != null)
     {
         sf.UdpateStatusTextWithStatus(Text, tom);
     }
 }