// To pass 'Group Role' data in GroupRoleDAL Data Access Layer to show Active and Inactive type records
 public DataTable LoadAllGroupRole(int LoggedInUser, string Ret)
 {
     GroupRoleDAL GroupRoleDAL = new GroupRoleDAL();
     try
     {
         return GroupRoleDAL.LoadGroupRoleAll(LoggedInUser, Ret);
     }
     catch
     {
         throw;
     }
     finally
     {
         GroupRoleDAL = null;
     }
 }
Exemplo n.º 2
0
    // To pass 'Group Role' data in GroupRoleDAL Data Access Layer to show Active and Inactive type records
    public DataTable LoadAllGroupRole(int LoggedInUser, string Ret)
    {
        GroupRoleDAL GroupRoleDAL = new GroupRoleDAL();

        try
        {
            return(GroupRoleDAL.LoadGroupRoleAll(LoggedInUser, Ret));
        }
        catch
        {
            throw;
        }
        finally
        {
            GroupRoleDAL = null;
        }
    }