public void EnvoyerCuisine()
        {
            if (CurrentTicket != null && CurrentTicket.CarteLines.Any())
            {
                CurrentTicket.EnvoyerCuisine();
                NotifyOfPropertyChange("CmdStatus");
                NotifyOfPropertyChange("CmdColor");

                //CurrentTicket?.Refresh();
                //Tickets?.Refresh();

                NotifyOfPropertyChange("CurrentTicket");
                NotifyOfPropertyChange("Tickets");

                if (ShowTicketsVisible)
                {
                    ShowTickets();
                }
            }
        }