maliming
maliming
hi I keep refreshing the page, but unfortunately, I can't reproduce it.
Yes, I tried many times, but no luck.
hi https://docs.abp.io/en/abp/latest/Best-Practices/Index https://abp.io/books/implementing-domain-driven-design
hi Please change all return type from `async void ` to `async Task `.
hi You have to change all the code like this. Never use `async void` as the return type for async methods.
```cs public async Task UpdateCostCenter(CostCenterDto dto) { var costcenter = _costCenterRepository.GetAsync(dto.Id); ObjectMapper.Map(dto, costcenter); await _costCenterRepository.UpdateAsync(costcenter); } ```
https://docs.abp.io/en/abp/latest/Object-To-Object-Mapping
hi Why do you want to change it? https://docs.abp.io/en/abp/latest/Audit-Logging#audit-log-contributors
hi If the projects exist. You can try to build it using the `dotnet build` command. 
Ensure the `abp_git_clone` repostory is on `rel-8.1` branch when you use `8.1.2` template project.