Пример #1
0
 public void AddGoal()
 {
     var goal = new Goal();
     Console.WriteLine("Введите название задачи");
     goal.Name = Console.ReadLine();
     Console.WriteLine("Введите описание задачи");
     goal.Text = Console.ReadLine();
     goal.Deadline = ReadDate();
     goal.Priority = ReadPriority();
     _goalManager.Add(goal);
     Console.WriteLine("Задача {0} успешно добавлена...", goal.Name);
 }