public ActionResult Delete(string name)
        {
            Requires.ArgumentNotNullOrEmptyString(name, "name");

            var client = new ApplicationManagerClient();

            client.DeleteApplication(name);
            return(RedirectToAction("Index", "Home"));
        }
        public ActionResult Delete(string name)
        {
            Requires.ArgumentNotNullOrEmptyString(name, "name");

            var client = new ApplicationManagerClient();
            client.DeleteApplication(name);
            return RedirectToAction("Index", "Home");
        }