private void loadGarzones()
        {
            MesaBLL mesabll = new MesaBLL();

            dtgMesas.ItemsSource            = mesabll.getmesasvacias().DefaultView;
            cbox_cantidad.ItemsSource       = mesabll.getmesasvacias().DefaultView;
            cbox_cantidad.DisplayMemberPath = "ID_MESA";
            cbox_cantidad.SelectedValuePath = "ID_MESA";

            usuarioBLL usrBLL = new usuarioBLL();

            cbGarzon.ItemsSource       = usrBLL.getGarzones().DefaultView;
            cbGarzon.DisplayMemberPath = "Nombre";
            cbGarzon.SelectedValuePath = "ID_USER";
        }