public List <User> GetAllUsers(string userId)
 {
     try
     {
         return(_graphDB.GetAllUsers(userId));
     }
     catch (Exception)
     {
         throw new FaildToConnectDbException();
     }
 }