Пример #1
0
        /// <summary>
        /// Edits the specified identifier.
        /// </summary>
        /// <param name="id">The identifier.</param>
        /// <returns>ActionResult.</returns>
        public ActionResult Edit(string id)
        {
            var model = new CountryViewModel();

            if (id != "-1")
            {
                var svc = new GeoCountryAppService();
                var o = svc.GetGeoCountry(id);
                model.GeoCountryId = o.GeoCountryId;
                model.Name = o.Name;
                model.Latitude = o.Latitude;
                model.Longitude = o.Longitude;

            }
            else
            {
                model.Action = "-1";
                model.GeoCountryId = string.Empty;
                model.Name = string.Empty;
                model.Latitude = 0;
                model.Longitude = 0;
            }



            return View(model);
        }
Пример #2
0
 public static List<GeoCountry> GetAllCountries()
 {
     var svc = new GeoCountryAppService();
     return svc.GetAllGeoCountry();
 }
Пример #3
0
        public ActionResult Edit(CountryViewModel model)
        {



            try
            {
                var svc = new GeoCountryAppService();

                var o = new GeoCountry
                {
                    GeoCountryId = model.GeoCountryId,
                    Name = model.Name,
                    Latitude = model.Latitude,
                    Longitude = model.Longitude

                };

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

                        svc.SaveGeoCountry(o);
                    }
                    else
                    {
                        svc.RemoveGeoCountry(model.GeoCountryId);
                    }
                    ViewBag.Feed = 0;
                }
            }
            catch (Exception)
            {
                ViewBag.Feed = 1;

            }

            return View(model);
        }
Пример #4
0
        public DataTablesResult<CountryViewModel> GetAllRecords(DataTablesParam dataTableParam)
        {

            var svc = new GeoCountryAppService();
            var lst = svc.GetAllGeoCountry();
            var lstVm = new List<CountryViewModel>();
            foreach (var itm in lst)
            {

                var itmVm = new CountryViewModel
                {

                    Name = itm.Name,
                    GeoCountryId = itm.GeoCountryId,

                };

                if (itm.Latitude != null)
                {
                    itmVm.Latitude = itm.Latitude;
                    itmVm.LatitudeText = GeoAngle.FromDouble((double)itm.Latitude).ToString();
                }
                else
                {
                    itmVm.Latitude = 0;
                    itmVm.LatitudeText = "Sín Coordenadas";
                }



                if (itm.Longitude != null)
                {
                    itmVm.Longitude = 0;
                    itmVm.LongitudeText = GeoAngle.FromDouble((double)itm.Longitude).ToString();
                }
                else
                {
                    itmVm.Longitude = 0;
                    itmVm.LongitudeText = "Sín Coordenadas";
                }




                var sb = new StringBuilder();

                string editUrl = Url.Action("Edit", "Country");
                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.GeoCountryId + "\"><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);

        }