public IEnumerable <Speaker> GetAll()
        {
            var speakers = _speakerRepository.AllSpeakers();

            return(speakers);
        }