public async Task <IEnumerable <SpecialtyModel> > GetByCityAsync(int facultyId)
 {
     return((await _specialtyService.GetByFacultyAsync(facultyId))
            .Select(s => new SpecialtyModel(s)));
 }