public ActionResult Edit(string id)
        {
            DirectSchoolClientCampusProgramClient programclient = new DirectSchoolClientCampusProgramClient();
            DirectSchoolClientCampusProgram       program       = programclient.GetByRowKey(id);

            DirectSchoolClientCampusClient campusclient = new DirectSchoolClientCampusClient();
            DirectSchoolClientCampus       campus       = campusclient.GetByRowKey(program.CampusRowKey);

            ViewBag.Campus = campus;

            DirectSchoolClientClient dscc = new DirectSchoolClientClient();

            ViewBag.Client = dscc.GetByRowKey(program.ClientRowKey);

            ViewBag.GeoAddStates      = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "AddStates", id);
            ViewBag.GeoAddZips        = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "AddZips", id);
            ViewBag.GeoSubtractStates = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "SubtractStates", id);
            ViewBag.GeoSubtractZips   = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "SubtractZips", id);

            return(View(program));
        }
        public ActionResult Delete(string id)
        {
            DirectSchoolClientCampusProgramClient programclient = new DirectSchoolClientCampusProgramClient();
            DirectSchoolClientCampusProgram       program       = programclient.GetByRowKey(id);

            //Unpublish
            string currentGeoAddStates      = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "AddStates", id);
            string currentGeoAddZips        = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "AddZips", id);
            string currentGeoSubtractStates = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "SubtractStates", id);
            string currentGeoSubtractZips   = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "SubtractZips", id);

            List <string> currentcategories = new List <string>();

            if (program.ProgramCategories != null)
            {
                currentcategories = new List <string>(program.ProgramCategories.Split(','));
            }

            GeoIndexNationalClient addnational = new GeoIndexNationalClient();

            foreach (string programcategory in currentcategories)
            {
                addnational.RemoveProgram(programcategory, program.RowKey);

                RemoveProgramCategory("AddStates", currentGeoAddStates, programcategory.Trim(), program.RowKey, new GeoIndexAddStateClient());
                RemoveProgramCategory("AddZips", currentGeoAddZips, programcategory.Trim(), program.RowKey, new GeoIndexAddZipClient());
                RemoveProgramCategory("SubtractStates", currentGeoSubtractStates, programcategory.Trim(), program.RowKey, new GeoIndexSubtractStateClient());
                RemoveProgramCategory("SubtractZips", currentGeoSubtractZips, programcategory.Trim(), program.RowKey, new GeoIndexSubtractZipClient());
            }

            programclient.Delete(program);

            BlobStringManager.Instance.DeleteString(id, "skillcowschoolprogramgeoindex", "AddStates");
            BlobStringManager.Instance.DeleteString(id, "skillcowschoolprogramgeoindex", "AddZips");
            BlobStringManager.Instance.DeleteString(id, "skillcowschoolprogramgeoindex", "SubtractStates");
            BlobStringManager.Instance.DeleteString(id, "skillcowschoolprogramgeoindex", "SubtractZips");

            return(RedirectToAction("Edit", "DirectSchoolClientCampuses", new { id = program.CampusRowKey }));
        }
        public ActionResult Edit(string id, DirectSchoolClientCampusProgram updateditem)
        {
            DirectSchoolClientCampusProgramClient programclient = new DirectSchoolClientCampusProgramClient();
            DirectSchoolClientCampusProgram       currentitem   = programclient.GetByRowKey(updateditem.RowKey);

            if (updateditem.GeoAddNational == null)
            {
                updateditem.GeoAddNational = "";
            }
            if (updateditem.GeoAddNational == null)
            {
                updateditem.GeoAddNational = "";
            }
            if (updateditem.GeoAddStates == null)
            {
                updateditem.GeoAddStates = "";
            }
            if (updateditem.GeoAddZips == null)
            {
                updateditem.GeoAddZips = "";
            }
            if (updateditem.GeoSubtractStates == null)
            {
                updateditem.GeoSubtractStates = "";
            }
            if (updateditem.GeoSubtractZips == null)
            {
                updateditem.GeoSubtractZips = "";
            }

            try
            {
                if (PublishGeoIndex(currentitem, updateditem))
                {
                    updateditem.GeoAddStates      = "";
                    updateditem.GeoAddZips        = "";
                    updateditem.GeoSubtractStates = "";
                    updateditem.GeoSubtractZips   = "";

                    programclient.Update(updateditem);

                    //Save LeadCap
                    LeadCapClient leadcapclient = new LeadCapClient();
                    LeadCap       leadcap       = leadcapclient.GetByRowKey(updateditem.RowKey);
                    bool          createnewcap  = false;
                    if (leadcap == null)
                    {
                        leadcap        = new LeadCap();
                        leadcap.RowKey = updateditem.RowKey;
                        createnewcap   = true;
                    }
                    leadcap.Total    = updateditem.TotalCap;
                    leadcap.Annually = updateditem.AnnualCap;
                    leadcap.Monthly  = updateditem.MonthlyCap;
                    leadcap.Weekly   = updateditem.WeeklyCap;
                    leadcap.Daily    = updateditem.DailyCap;
                    if (createnewcap)
                    {
                        leadcapclient.AddNewItem(leadcap);
                    }
                    else
                    {
                        leadcapclient.Update(leadcap);
                    }


                    //Create LeadCounter if doesn't exist
                    LeadCounterClient leadcounterclient = new LeadCounterClient();
                    LeadCounter       leadcounter       = leadcounterclient.GetByRowKey(updateditem.RowKey);
                    if (leadcounter == null)
                    {
                        leadcounter          = new LeadCounter();
                        leadcounter.RowKey   = updateditem.RowKey;
                        leadcounter.Total    = 0;
                        leadcounter.Annually = 0;
                        leadcounter.Monthly  = 0;
                        leadcounter.Weekly   = 0;
                        leadcounter.Daily    = 0;
                        leadcounterclient.AddNewItem(leadcounter);
                    }
                }
                else
                {
                    throw new Exception("Failed to publish GEO index");
                }

                return(RedirectToAction("Edit", "DirectSchoolClientCampuses", new { id = updateditem.CampusRowKey }));
            }
            catch
            {
                DirectSchoolClientCampusClient campusclient = new DirectSchoolClientCampusClient();
                DirectSchoolClientCampus       campus       = campusclient.GetByRowKey(updateditem.CampusRowKey);
                ViewBag.Campus = campus;

                DirectSchoolClientClient dscc = new DirectSchoolClientClient();
                ViewBag.Client = dscc.GetByRowKey(updateditem.ClientRowKey);

                ViewBag.GeoAddStates      = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "AddStates", id);
                ViewBag.GeoAddZips        = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "AddZips", id);
                ViewBag.GeoSubtractStates = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "SubtractStates", id);
                ViewBag.GeoSubtractZips   = BlobStringManager.Instance.GetString("skillcowschoolprogramgeoindex", "SubtractZips", id);


                return(View(updateditem));
            }
        }