public bool approvalParticipationInEvent([FromBody] approvalParticipation approvalParticipation)
 {
     return(EventOfVolunteerBL.approvalParticipationInEvent(approvalParticipation.id));
 }
 //בדיקה מי יכולה להשתתף באירוע ושליחת אימייל לכל אחת
 public bool invitationParticipants(int eventsVolunteerID)
 {
     //בדיקה מי יכול להשתתף באירוע לפי מספר שעות התנדבות מינימאלי
     return(EventOfVolunteerBL.invitationParticipants(eventsVolunteerID));
 }