public IActionResult AddNew(string ID)
        {
            NewApp newApp = new NewApp();

            if (ID != null)
            {
                newApp.ID = int.Parse(ID);
                GetAnApp gaa = new GetAnApp(ID);
                gaa.FillInNewApp(newApp);
            }
            return(View("AddNew", newApp));
        }