Ejemplo n.º 1
0
        public static AplhaNumericFilter Build(this AplhaNumericFilter keyValuePairs)
        {
            if (!keyValuePairs.ContainsKey(AplhaNumericFilterConstants.ALL))
            {
                keyValuePairs.AddOrUpdate(AplhaNumericFilterConstants.ALL, 0);
            }
            else
            {
                keyValuePairs.AddOrUpdate(AplhaNumericFilterConstants.ALL, keyValuePairs[AplhaNumericFilterConstants.ALL]);
            }

            keyValuePairs.GetAtoZ();
            keyValuePairs.Get0To10();

            return(keyValuePairs);
        }