예제 #1
0
        public async Task <CommunityModel> GetCommunity(int id)
        {
            var community = await _communityDao.GetCommunity(id).ConfigureAwait(false);

            return(_modelFactory.CreateCommunityModel(community));
        }