private ActionResult GetView(int id)
        {
            try
            {
                using (var db = new Context())
                {
                    var _bll = new BLL.FabricanteBLL(db, _idUsuario);

                    var _fabricante = _bll.FindSingle(e => e.idFabricante == id);

                    return View(FabricanteVM.GetFabricante(_fabricante));
                }
            }
            catch (Exception ex)
            {
                this.AddFlashMessage(RP.Util.Exception.Message.Get(ex), FlashMessage.ERROR); RP.Util.Entity.ErroLog.Add(ex, Session.SessionID, _idUsuario);
                return RedirectToAction("Index");
            }
        }