Beispiel #1
0
        public async Task <IEnumerable <SpecialityModel> > GetAllAsync()
        {
            var daos = await _specialityRepo.GetAllAsync();

            return(_mapper.Map <List <Speciality>, IEnumerable <SpecialityModel> >(daos));
        }