/// <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); } }
public object GetPeriod(DateTime pdtmToDate) { CST_ActCostAllocationMasterDS dsPeriod = new CST_ActCostAllocationMasterDS(); return(dsPeriod.GetObjectVO(pdtmToDate)); }
public object GetPeriod(int pintPeriodID) { CST_ActCostAllocationMasterDS dsPeriod = new CST_ActCostAllocationMasterDS(); return(dsPeriod.GetObjectVO(pintPeriodID)); }