Exemplo n.º 1
0
        public ArrayList GetHolidaysInYear(int pintYear)
        {
            UtilsDS dsUtils = new UtilsDS();

            return(dsUtils.GetHolidaysInYear(pintYear));
        }
Exemplo n.º 2
0
        /// <summary>
        /// Get selected records from temp table
        /// </summary>
        /// <param name="pstrTableName">Temp table name</param>
        /// <returns></returns>
        public DataSet GetSelectedRecords(string pstrTableName, DataSet pdstResultData)
        {
            UtilsDS dsUtils = new UtilsDS();

            return(dsUtils.GetSelectedRecords(pstrTableName, pdstResultData));
        }
Exemplo n.º 3
0
        public ArrayList GetWorkingDayByYear(int pintYear)
        {
            UtilsDS dsUtil = new UtilsDS();

            return(dsUtil.GetWorkingDayByYear(pintYear));
        }