public static void RemoveUser(string userId, out bool isSuccess)
 {
     isSuccess = false;
     try
     {
         DBoperationsManager.RemoveUser(userId, out isSuccess);
     }
     catch (Exception ex)
     {
         Logger.LogError(ex);
     }
 }