public bool Post(Student student)
 {
     StudentManager manager = new StudentManager();
     manager.Add(student);
     return true;
 }