public IEnumerable <Lecturer> ReadLecturers(bool takeAll = true, int count = 1000)
 {
     try
     {
         return(_lecturerRepository.ReadLecturers(takeAll, count));
     }
     catch (Exception e)
     {
         return(new List <Lecturer>());
     }
 }