public IEnumerable <ImportingOrderDto> GetAll() { return(importingOrderRepository.GetAll().MappingDtos()); }
public IEnumerable <ImportingOrderDto> GetAll() { var orders = _orderRepo.GetAll(); return(_mapper.Map <IEnumerable <ImportingOrderDto> >(orders)); }