Example #1
0
 public async Task Add(ClientDto dto)
 {
     var entity = dto.MapToEntity();
     await _clientRepository.Add(entity);
 }