Exemplo n.º 1
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            string str = "";

            Tasks.Text = "";
            Guid idEmplSprint;

            if (!Guid.TryParse(EId.Text, out idEmplSprint))
            {
                MessageBox.Show("Неправильный формат id");
            }
            else
            {
                try
                {
                    foreach (var task in AccessBDTasks.GetTasksByEmployeeId(idEmplSprint))
                    {
                        if (task.Status == Status.Open)
                        {
                            str += "Id - " + task.Id + " Name - " + task.Name + " Description - " + task.Description + '\n';
                        }
                    }
                    Tasks.Text = str;
                }
                catch (KeyNotFoundException)
                {
                    MessageBox.Show("Нет такого сотрудника, либо сотрудник пока не содержит задач");
                }
            }
        }
Exemplo n.º 2
0
 public static List <Task> GetTasksByEmployeeId(Guid id)
 {
     return(AccessBDTasks.GetTasksByEmployeeId(id));
 }