Hotel.cs 745 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Xml.Linq;
  7. namespace WpfAppHotel
  8. {
  9. public partial class Hotel
  10. {
  11. public string AllInform
  12. {
  13. get
  14. {
  15. try
  16. {
  17. return "Название: " + Name + "\nКоличество звезд: " + CountOfStars + "\nСтрана: " + Country.Name + "\nОписание: " + Description;
  18. }
  19. catch (System.Exception)
  20. {
  21. return "Не удалось загрузить информацию";
  22. throw;
  23. }
  24. }
  25. }
  26. }
  27. }