Example #1
0
    /// <summary>
    ///  To bind Content developer of 'Active' and 'InActive' Status
    /// </summary>
    /// <returns></returns>
    protected DataTable ConDevDetails()
    {
        ContentDeveloperBAL ContentDeveloperBAL = new ContentDeveloperBAL();
        DataTable           dTable = new DataTable();

        try
        {
            dTable = ContentDeveloperBAL.LoadAllContentDeveloper(LoginUser, Ret);
        }
        catch
        {
            throw;
        }
        finally
        {
            ContentDeveloperBAL = null;
        }

        return(dTable);
    }
    /// <summary>
    ///  To bind Content developer of 'Active' and 'InActive' Status
    /// </summary>
    /// <returns></returns>
    protected DataTable ConDevDetails()
    {
        ContentDeveloperBAL ContentDeveloperBAL = new ContentDeveloperBAL();
        DataTable dTable = new DataTable();
        try
        {
            dTable = ContentDeveloperBAL.LoadAllContentDeveloper(LoginUser, Ret);
        }
        catch
        {
            throw;
        }
        finally
        {
            ContentDeveloperBAL = null;
        }

        return dTable;
    }