Пример #1
0
    /// <summary>
    /// To get Active Status group role details
    /// </summary>
    /// <returns></returns>
    private DataTable ActiveGridDataSource()
    {
        GroupRoleBAL GroupRoleBAL = new GroupRoleBAL();
        DataTable    DtActSou     = new DataTable();

        try
        {
            DtActSou = GroupRoleBAL.LoadActiveGroupRole(true, LoginUser, Ret);
        }
        catch
        {
            throw;
        }
        finally
        {
            GroupRoleBAL = null;
        }
        return(DtActSou);
    }
 /// <summary>
 /// To get Active Status group role details
 /// </summary>
 /// <returns></returns>
 private DataTable ActiveGridDataSource()
 {
     GroupRoleBAL GroupRoleBAL = new GroupRoleBAL();
     DataTable DtActSou = new DataTable();
     try
     {
         DtActSou = GroupRoleBAL.LoadActiveGroupRole(true, LoginUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         GroupRoleBAL = null;
     }
     return DtActSou;
 }