Exemple #1
0
        public List <Auto_ref> GetAuto_refData(int nbLine)
        {
            List <Auto_ref> result = _dataSet.GetAuto_refData();

            if (nbLine.Equals(999) || result.Count == 0 || result.Count < nbLine)
            {
                return(result);
            }
            return(result.GetRange(0, nbLine));
        }