1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Esoft
- {
- internal class Status
- {
- string name;
- public string Name
- {
- get { return name; }
- set { name = value; }
- }
- public static List<Status> FillStatus()
- {
- List<Status> list = new List<Status>
- {
- new Status { Name = "запланирована" },
- new Status { Name = "исполняется" },
- new Status { Name = "выполнена" },
- new Status { Name = "отменена" }
- };
- return list;
- }
- }
- }
|