Exemple #1
0
 public async Task Add(OrderDto dto)
 {
     var entity = dto.MapToEntity();
     await _orderRepository.Add(entity);
 }