public List <FindProductInfoViewModel> FindMostRecentListings()
        {
            var domainList = FindProductInfoHelper.GetAllRecentProducts();
            List <FindProductInfoViewModel> convertedList = createModel.MappingRecentListing(domainList);

            return(convertedList);
        }
Exemplo n.º 2
0
        public void Test_GetAllRecentProducts()
        {
            var sut = FindProductInfoHelper.GetAllRecentProducts();

            Assert.NotEmpty(sut);
        }