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