// POST api/<controller>
 //הוספת תלמידה
 public void Post([FromBody] StudentDTO student)
 {
     studentBL.AddStudentBL(student);
 }