public bool Equals(IAnswer other)
 {
     if (Data().Equals(other.Data()))
     {
         Debug.Log("TRUE: " + Data().Id + " and " + other.Data().Id);
         return(true);
     }
     return(false);
 }