public async Task <IEnumerable <UniversityModel> > GetByCityAsync(int cityId)
 {
     return((await _universityService.GetByCityAsync(cityId))
            .Select(s => new UniversityModel(s)));
 }