PartialClassClient.cs 384 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace School
  7. {
  8. public partial class Client
  9. {
  10. public string FullName
  11. {
  12. get
  13. {
  14. string fio = FirstName + " " + LastName + " " + Patronymic;
  15. return fio;
  16. }
  17. }
  18. }
  19. }