PartalClass.cs 336 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 PaperProduction
  7. {
  8. partial class Agent
  9. {
  10. public string Name
  11. {
  12. get
  13. {
  14. return AgentType.Title + " | " + Title;
  15. }
  16. }
  17. }
  18. }