Пример #1
0
 public async Task <ShipmentDTO> ReadAsync(int id)
 {
     return(_mapper.Map <ShipmentDTO>(await _repo.ReadAsync(p => p.Id == id)));
 }