Ejemplo n.º 1
0
        public static bool BetweenPeriod(string periodList)
        {
            string empty = string.Empty;

            return(ValidateHelper.BetweenPeriod(periodList, out empty));
        }
Ejemplo n.º 2
0
 public static bool BetweenPeriod(string periodStr, out string liePeriod)
 {
     string[] strArrays = StringHelper.SplitString(periodStr, "\n");
     return(ValidateHelper.BetweenPeriod(strArrays, out liePeriod));
 }