Ejemplo n.º 1
0
 public IEnumerable <ImportingOrderDto> GetAll()
 {
     return(importingOrderRepository.GetAll().MappingDtos());
 }
Ejemplo n.º 2
0
        public IEnumerable <ImportingOrderDto> GetAll()
        {
            var orders = _orderRepo.GetAll();

            return(_mapper.Map <IEnumerable <ImportingOrderDto> >(orders));
        }