Status.cs 736 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Esoft
  7. {
  8. internal class Status
  9. {
  10. string name;
  11. public string Name
  12. {
  13. get { return name; }
  14. set { name = value; }
  15. }
  16. public static List<Status> FillStatus()
  17. {
  18. List<Status> list = new List<Status>
  19. {
  20. new Status { Name = "запланирована" },
  21. new Status { Name = "исполняется" },
  22. new Status { Name = "выполнена" },
  23. new Status { Name = "отменена" }
  24. };
  25. return list;
  26. }
  27. }
  28. }