FullGender.cs 525 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AvaloniaBaseTeacher.Models
  7. {
  8. public partial class Gender
  9. {
  10. public string FullGender
  11. {
  12. get
  13. {
  14. if (GenderName == "ж")
  15. {
  16. return "Женский";
  17. }
  18. else
  19. {
  20. return "Мужской";
  21. }
  22. }
  23. }
  24. }
  25. }