CleanCart.ApplicationServices.Assemblers.CatalogItemAssembler.ToDtoList C# (CSharp) Method

ToDtoList() public method

public ToDtoList ( IEnumerable catalogItems ) : IList
catalogItems IEnumerable
return IList
        public virtual IList<CatalogItemDTO> ToDtoList(IEnumerable<CatalogItem> catalogItems)
        {
            return catalogItems.Select(ToDto).ToList();
        }
    }
CatalogItemAssembler