/// <summary>
 /// CheckSQLConnection method implmentation
 /// </summary>
 internal static bool CheckSQLConnection(string connectionstring, string username, string password)
 {
     try
     {
         EnsureService();
         return(RuntimeRepository.CheckSQLConnection(Config, connectionstring, username, password));
     }
     catch
     {
         return(false);
     }
 }
 /// <summary>
 /// CheckADDSAttribute method implmentation
 /// </summary>
 internal static bool CheckSQLConnection(string connectionstring)
 {
     EnsureService();
     return(RuntimeRepository.CheckSQLConnection(Config, connectionstring));
 }