Exemple #1
0
 public async Task <Community> Create(Community community)
 {
     _communityRepository.Create(community);
     _communityRepository.SaveChanges();
     return(await Task.FromResult(community)
            .ConfigureAwait(true));
 }