예제 #1
0
        public ActionResult CreateRange(int?startwith = 0, int?endwith = 0, int?marginalcode = 10)
        {
            int    totalZipCodesAdded = CurrentDatabase.CreateZipCodesRange(startwith.Value, endwith.Value, marginalcode.Value);
            string firstZipCode       = startwith.Value.ToString("00000");

            return(Redirect($"/MetroZips/#{firstZipCode}"));
        }