public ArrayList GetHolidaysInYear(int pintYear) { UtilsDS dsUtils = new UtilsDS(); return(dsUtils.GetHolidaysInYear(pintYear)); }
/// <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)); }
public ArrayList GetWorkingDayByYear(int pintYear) { UtilsDS dsUtil = new UtilsDS(); return(dsUtil.GetWorkingDayByYear(pintYear)); }