public string GetSchoolByID(string ID) { int VerifyValue = 0; Schools Forecast = new Schools(); if (!Int32.TryParse(ID, out VerifyValue)) { return(Forecast.SendError(400)); } else { return(Forecast.GetSchoolByID(ID)); } }