public bool CierratecnicoPedido(int pedidoid, bool Repara, string detalle)
        {
            if (Repara == true)
            {
                //tiene que insertar el metodo de reparacion
                try
                {
                    using (TropaNerdEntities context = new TropaNerdEntities())
                    {
                        context.CerrarPedido(pedidoid);
                        context.RetiroINS(pedidoid, detalle, detalle);
                        return(true);
                    }
                }
                catch (Exception ex)
                {
                    return(false);
                }
            }
            else
            {
                try
                {
                    using (TropaNerdEntities context = new TropaNerdEntities())
                    {
                        context.CerrarPedido(pedidoid);

                        return(true);
                    }
                }
                catch (Exception ex)
                {
                    return(false);
                }
            }
        }