public IHttpActionResult GetAll() { try { List <Student> students = new List <Student>(); students = studentFcd.GetAll(); return(Ok(students)); } catch (Exception ex) { log.Error($"{ex.Message}"); throw ex; } }