public IEnumerable <SellingOrderDto> GetAll()
        {
            var orders = _orderRepo.GetAll();

            return(_mapper.Map <IEnumerable <SellingOrderDto> >(orders));
        }
Exemplo n.º 2
0
 public IEnumerable <SellingOrderDto> GetAll()
 {
     return(sellingOrderRepository.GetAll().MappingDtos());
 }