Esempio n. 1
0
        //**************************************************************************
        ///    <Description>
        ///       This method uses to get data from PO detail by PO Master
        ///    </Description>
        ///    <Inputs>
        ///        int
        ///    </Inputs>
        ///    <Outputs>
        ///       DataSet
        ///    </Outputs>
        ///    <Returns>
        ///       DataSet
        ///    </Returns>
        ///    <Authors>
        ///       DungLa
        ///    </Authors>
        ///    <History>
        ///       17-Feb-2005
        ///    </History>
        ///    <Notes>
        ///    </Notes>
        //**************************************************************************

        public DataSet GetDataByPOMasterID(int pintPOMasterID)
        {
            try
            {
                PO_AdditionChargesDS dsAddCharge = new PO_AdditionChargesDS();
                return(dsAddCharge.GetDataByPOMasterID(pintPOMasterID));
            }
            catch (PCSException ex)
            {
                throw ex;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }