예제 #1
0
        /// <summary>
        /// Get the object information by ID of VO class
        /// </summary>

        public object GetObjectVO(int pintID)
        {
            try
            {
                CST_ActCostAllocationMasterDS dsMaster = new CST_ActCostAllocationMasterDS();

                return(dsMaster.GetObjectVO(pintID));
            }
            catch (PCSDBException ex)
            {
                throw ex;
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message, ex);
            }
        }
예제 #2
0
        public object GetPeriod(DateTime pdtmToDate)
        {
            CST_ActCostAllocationMasterDS dsPeriod = new CST_ActCostAllocationMasterDS();

            return(dsPeriod.GetObjectVO(pdtmToDate));
        }
예제 #3
0
        public object GetPeriod(int pintPeriodID)
        {
            CST_ActCostAllocationMasterDS dsPeriod = new CST_ActCostAllocationMasterDS();

            return(dsPeriod.GetObjectVO(pintPeriodID));
        }