public List <long> DeleteEducations(List <long> educationIds)
 {
     try
     {
         return(_educationRepository.DeleteEducations(educationIds));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }