public void ExecuteOpenBtn()
        {
            JobQueryRow selected = SelectedItem as JobQueryRow;

            SelectedItem = null;
            if (selected != null)
            {
                _previousOpen = true;
                QueuedTask.Run(() =>
                {
                    Open_WorkOrderAsync(selected.JobID);
                });
            }
        }
Exemplo n.º 2
0
        public void ExecuteOpenBtn()
        {
            JobQueryRow selected = SelectedItem as JobQueryRow;

            SelectedItem = null;
            if (selected != null)
            {
                _previousOpen = true;
                QueuedTask.Run(() =>
                {
#pragma warning disable CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
                    Open_WorkOrderAsync(selected.JobID);
#pragma warning restore CS4014 // Because this call is not awaited, execution of the current method continues before the call is completed
                });
            }
        }