/// <summary>
        /// Ouvre l'entreprise séléctionnée à l'aide d'une nouvelle fenêtre
        /// </summary>
        public Retour_Chantier Open()
        {
            if (this._DataGridMain.SelectedItem != null)
            {
                if (this._DataGridMain.SelectedItems.Count == 1)
                {
                    //Affichage du message "modification en cours"
                    ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true;
                    ((App)App.Current)._theMainWindow.changementTexteStatusBar("Modification d'un retour chantier en cours ...");

                    //Création de la fenêtre
                    RetourChantierWindow retourChantierWindow = new RetourChantierWindow();

                    //Initialisation du Datacontext en Sortie_Atelier et association à l'Sortie_Atelier sélectionné
                    retourChantierWindow.DataContext = new Retour_Chantier();
                    retourChantierWindow.DataContext = (Retour_Chantier)this._DataGridMain.SelectedItem;

                    //booléen nullable vrai ou faux ou null
                    bool? dialogResult = retourChantierWindow.ShowDialog();

                    if (dialogResult.HasValue && dialogResult.Value == true)
                    {
                        //Si j'appuie sur le bouton Ok, je renvoi l'objet Sortie_Atelier dans le datacontext de la fenêtre
                        return (Retour_Chantier)retourChantierWindow.DataContext;
                    }
                    else
                    {
                        //Je récupère les anciennes données de la base sur les modifications effectuées
                        ((App)App.Current).mySitaffEntities.Refresh(System.Data.Objects.RefreshMode.StoreWins, (Retour_Chantier)(this._DataGridMain.SelectedItem));
                        //La commande étant un objet "critique" au niveau des associations, je refresh l'edmx et je relance le filtrage s'il y en avait un afin d'avoir les mêmes infos (invisible pour l'user)
                        ((App)App.Current).refreshEDMXSansVidage();
                        this.filtrage();

                        //Si j'appuie sur le bouton annuler, je préviens que j'annule ma modification
                        ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false;
                        this.recalculMax();
                        ((App)App.Current)._theMainWindow.changementTexteStatusBar("Modification d'un retour chantier annulée : " + this.listRetour.Count() + " / " + this.max);

                        return null;
                    }
                }
                else
                {
                    MessageBox.Show("Vous ne devez sélectionner qu'une seul retour chantier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation);
                    return null;
                }
            }
            else
            {
                MessageBox.Show("Vous devez sélectionner un retour chantier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation);
                return null;
            }
        }
        /// <summary>
        /// Ajoute une nouvelle entreprise à la liste à l'aide d'une nouvelle fenêtre
        /// </summary>
        public Retour_Chantier Add()
        {
            //Affichage du message "ajout en cours"
            ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true;
            ((App)App.Current)._theMainWindow.changementTexteStatusBar("Ajout d'une retour chantier en cours ...");

            //Initialisation de la fenêtre
            RetourChantierWindow retourChantierWindow = new RetourChantierWindow();

            //Création de l'objet temporaire
            Retour_Chantier tmp = new Retour_Chantier();

            //Mise de l'objet temporaire dans le datacontext
            retourChantierWindow.DataContext = tmp;

            //booléen nullable vrai ou faux ou null
            bool? dialogResult = retourChantierWindow.ShowDialog();

            if (dialogResult.HasValue && dialogResult.Value == true)
            {
                //Si j'appuie sur le bouton Ok, je renvoi l'objet sortieAtelier dans le datacontext de la fenêtre
                return (Retour_Chantier)retourChantierWindow.DataContext;
            }
            else
            {
                try
                {
                    //Detachement de tous les éléments liés à une Mission tiers
                    if (((Retour_Chantier)retourChantierWindow.DataContext).Contenu_Retour_Chantier != null)
                    {
                        while (((Retour_Chantier)retourChantierWindow.DataContext).Contenu_Retour_Chantier.Count() > 0)
                        {
                            ((App)App.Current).mySitaffEntities.Detach(((Retour_Chantier)retourChantierWindow.DataContext).Contenu_Retour_Chantier.First());
                        }
                        ((App)App.Current).mySitaffEntities.Detach(((Retour_Chantier)retourChantierWindow.DataContext).Contenu_Retour_Chantier);
                    }
                }
                catch (Exception)
                {

                }
                //Si j'appuie sur le bouton annuler, je préviens que j'annule mon ajout
                ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false;
                this.recalculMax();
                ((App)App.Current)._theMainWindow.changementTexteStatusBar("Ajout d'un retour chantier annulé : " + this.listRetour.Count() + " / " + this.max);

                return null;
            }
        }
        /// <summary>
        /// Ouvre l'entreprise séléctionnée en lecture seule à l'aide d'une nouvelle fenêtre
        /// </summary>
        public Retour_Chantier Look(Retour_Chantier retourChantier)
        {
            if (this._DataGridMain.SelectedItem != null || retourChantier != null)
            {
                if (this._DataGridMain.SelectedItems.Count == 1 || retourChantier != null)
                {
                    //Affichage du message "affichage en cours"
                    ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = true;
                    ((App)App.Current)._theMainWindow.changementTexteStatusBar("Affichage d'un retour chantier en cours ...");

                    //Création de la fenêtre
                    RetourChantierWindow retourChantierWindow = new RetourChantierWindow();

                    //Initialisation du Datacontext en ordre de mission et association à l'sortieAtelier sélectionnée
                    retourChantierWindow.DataContext = new Sortie_Atelier();
                    if (retourChantier != null)
                    {
                        retourChantierWindow.DataContext = retourChantier;
                    }
                    else
                    {
                        retourChantierWindow.DataContext = (Retour_Chantier)this._DataGridMain.SelectedItem;
                    }

                    //Je positionne la lecture seule sur la fenêtre
                    retourChantierWindow.lectureSeule();

                    //J'affiche la fenêtre
                    bool? dialogResult = retourChantierWindow.ShowDialog();

                    //Affichage du message "affichage en cours"
                    ((App)App.Current)._theMainWindow.progressBarMainWindow.IsIndeterminate = false;
                    ((App)App.Current)._theMainWindow.changementTexteStatusBar("Affichage d'un retour chantier terminé : " + this.listRetour.Count() + " / " + this.max);

                    //Renvoi null
                    return null;
                }
                else
                {
                    MessageBox.Show("Vous ne devez sélectionner qu'un retour chantier atelier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation);
                    return null;
                }
            }
            else
            {
                MessageBox.Show("Vous devez sélectionner un retour chantier.", "Attention", MessageBoxButton.OK, MessageBoxImage.Exclamation);
                return null;
            }
        }