Example #1
0
    /// <summary>
    ///  To get specific Content developer details
    /// </summary>
    /// <param name="ConDevID"></param>
    /// <returns></returns>

    protected DataTable GetUserDetails(int ConDevID)
    {
        ContentDeveloperBAL ContentDeveloperBAL = new ContentDeveloperBAL();
        DataTable           DtConDevGetDet      = new DataTable();

        try
        {
            // 'SelectContentDeveloperID' is called from Content developer BAL
            //to fetch specific ContentDeveloper details by passing ContentDeveloperID
            DtConDevGetDet = ContentDeveloperBAL.SelectContentDeveloperID(ConDevID, LoginUser, Ret);
        }
        catch
        {
            throw;
        }
        finally
        {
            ContentDeveloperBAL = null;
        }

        return(DtConDevGetDet);
    }
    /// <summary>
    ///  To get specific Content developer details 
    /// </summary>
    /// <param name="ConDevID"></param>
    /// <returns></returns>
    protected DataTable GetUserDetails(int ConDevID)
    {
        ContentDeveloperBAL ContentDeveloperBAL = new ContentDeveloperBAL();
        DataTable DtConDevGetDet = new DataTable();
        try
        {
            // 'SelectContentDeveloperID' is called from Content developer BAL
            //to fetch specific ContentDeveloper details by passing ContentDeveloperID
            DtConDevGetDet = ContentDeveloperBAL.SelectContentDeveloperID(ConDevID, LoginUser, Ret);
        }
        catch
        {
            throw;
        }
        finally
        {
            ContentDeveloperBAL = null;
        }

        return DtConDevGetDet;
    }