/// <summary>
        /// Edits the specified identifier.
        /// </summary>
        /// <param name="id">The identifier.</param>
        /// <returns>ActionResult.</returns>
        public ActionResult Edit(int id)
        {
            var model = new GeneralStateViewModel();

            if (id != -1)
            {
                var svc = new GeneralStateAppService();
                var o = svc.GetGeneralState(id);
                model.GeneralStateId = o.GeneralStateId;
                model.Name = o.Name;
            

            }
            else
            {
                model.Action = "-1";
                model.GeneralStateId = -1;
                model.Name = string.Empty;
                
            }



            return View(model);
        }
        public ActionResult Edit(GeneralStateViewModel model)
        {



            try
            {
                var svc = new GeneralStateAppService();

                var o = new GeneralState
                {
                    GeneralStateId= model.GeneralStateId,
                    Name = model.Name,
                    

                };

                if (model.Action == "-1")
                {
                    var exist = svc.GetGeneralState(model.GeneralStateId)!=null;
                    if (!exist)
                    {
                        svc.AddGeneralState(o);
                        ViewBag.Feed = 0;
                    }
                    else
                    {
                        model.Action = "-1";
                        ViewBag.Feed = 3;
                        return View(model);
                    }
                }
                else
                {
                    o.GeneralStateId= model.GeneralStateId;
                    if (model.IsDeleteAction == 0)
                    {

                        svc.SaveGeneralState(o);
                    }
                    else
                    {
                        svc.RemoveGeneralState(model.GeneralStateId);
                    }
                    ViewBag.Feed = 0;
                }
            }
            catch (Exception)
            {
                ViewBag.Feed = 1;

            }

            return View(model);
        }
        public DataTablesResult<GeneralStateViewModel> GetAllRecords(DataTablesParam dataTableParam)
        {

            var svc = new GeneralStateAppService();
            var lst = svc.GetAllGeneralState();
            var lstVm = new List<GeneralStateViewModel>();
            foreach (var itm in lst)
            {

                var itmVm = new GeneralStateViewModel
                {

                    Name = itm.Name,
                    GeneralStateId= itm.GeneralStateId,

                };

              




                var sb = new StringBuilder();

                string editUrl = Url.Action("Edit", "GeneralState");
                sb.AppendLine("<div class=\"btn-group\">");
                sb.AppendLine(
                    "<button type=\"button\" class=\"btn btn-default dropdown-toggle\" data-toggle=\"dropdown\" aria-expanded=\"false\">");
                sb.AppendLine("Acciones <span class=\"caret\"></span>");
                sb.AppendLine("</button>");
                sb.AppendLine("<ul class=\"dropdown-menu\" role=\"menu\">");
                sb.AppendLine("<li><a href=\"" + editUrl + "?id=-1\"><i class=\"fa fa-plus\"></i>&nbsp;Nuevo Registro</a></li>");
                sb.AppendLine("<li><a href=\"" + editUrl + "?id=" + itmVm.GeneralStateId+ "\"><i class=\"fa fa-edit\"></i>&nbsp;Editar " + itmVm.Name + "</a></li>");
                sb.AppendLine("</ul>");
                sb.AppendLine("</div>");






                var actionButton = sb.ToString();

                itmVm.ActionButton = actionButton;
                lstVm.Add(itmVm);

            }

            var lstVmQueryable = lstVm.AsQueryable();


            return DataTablesResult.Create(lstVmQueryable, dataTableParam);

        }