Beispiel #1
0
        public CustomGenericList <Name> NameList(string startRow, string batchSize)
        {
            // Validate the input
            int startRowValid;
            int batchSizeValid;

            this.ValidateNameListStartAndBatch(startRow, batchSize, out startRowValid, out batchSizeValid);

            return(NameServiceDAL.PageNameListActive(null, null, startRowValid, batchSizeValid));
        }