ClassUser.cs 670 B

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace WpfAppProject
  7. {
  8. public partial class TableUsers
  9. {
  10. public string FIO
  11. {
  12. get
  13. {
  14. return UserSurname + " " + UserName + " " + UserPatronymic;
  15. }
  16. }
  17. public string Photo
  18. {
  19. get
  20. {
  21. if(UserPhoto!=null)
  22. {
  23. return "\\images\\" + UserPhoto;
  24. }
  25. else
  26. {
  27. return null;
  28. }
  29. }
  30. }
  31. }
  32. }