using ACG6MvcAdHcApi.Models;
using ACG6MvcAdHcApi.BusinessLayer;
using System.Collections.Generic;
 
namespace ACG6MvcAdHcApi.ViewModels
{ 
     /// <summary>
     /// Works like the Base class for ProductForeachViewModel
     /// ************************************* Do not make changes to this class *************************************
     /// ** Put your additional code in the ProductForeachViewModel class under the ViewModels/Foreach folder. **
     /// *************************************************************************************************************
     /// </summary>
     public partial class ProductForeachViewModel
     { 
         public List<Product> ProductData { getset; }
         public string[,] ProductFieldNames { getset; }
         public string FieldToSort { getset; }
         public string FieldToSortWithOrder { getset; }
         public string FieldSortOrder { getset; }
         public int StartPage { getset; }
         public int EndPage { getset; }
         public int CurrentPage { getset; }
         public int NumberOfPagesToShow { getset; }
         public int TotalPages { getset; }
         public List<string> UnsortableFields { getset; }
     } 
}