public Conference GetConferenceById(Guid id) { if (id != null) { var conf = _conferRepository.Find(id); return(conf); } else { return(null); } }