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