private void TimerControlador(object sender, EventArgs e)
 {
     Verificacion = BbddService.GetComandas();
     if (Comandas.Count != Verificacion.Count)
     {
         Comandas = (ObservableCollection <COMANDA>)Verificacion.OrderByDescending(x => x.IdComanda);
     }
 }