public void Update(string newText)
 {
     if (newText != _echo.Text)
     {
         _echo.Text = newText;//todo: low check should be occur inside echo
         _echo.Update(newText);
     }
 }