public bool UnbanUser(int userId)
 {
     try
     {
         return(_userIdentityRepository.UnbanUser(userId, _connectionFactory));
     }
     catch (Exception exception)
     {
         DemLogger.Current.Error(exception, $"{nameof(AdminService)}. Error in function {DemLogger.GetCallerInfo()}");
         return(false);
     }
 }