public ActionResult CarregarArquivo(int ArquivoId)
 {
     ArquivoDAL model = new ArquivoDAL();
     //return Json(model.CarregarArquivo(ArquivoId), JsonRequestBehavior.DenyGet);
     return Json(model.ListarArquivos(null), JsonRequestBehavior.DenyGet);
 }