Пример #1
0
 // To pass 'Group' data in GroupDAL Data Access Layer to show Active and Inactive type records
 public DataTable LoadActiveGroup(bool IsActive,int LoggedInUser, string returnmsg)
 {
     GroupDAL GroupDAL = new GroupDAL();
     try
     {
         return GroupDAL.LoadActiveGroup(IsActive, LoggedInUser, returnmsg);
     }
     catch
     {
         throw;
     }
     finally
     {
         GroupDAL = null;
     }
 }
Пример #2
0
    // To pass 'Group' data in GroupDAL Data Access Layer to show Active and Inactive type records
    public DataTable LoadActiveGroup(bool IsActive, int LoggedInUser, string returnmsg)
    {
        GroupDAL GroupDAL = new GroupDAL();

        try
        {
            return(GroupDAL.LoadActiveGroup(IsActive, LoggedInUser, returnmsg));
        }
        catch
        {
            throw;
        }
        finally
        {
            GroupDAL = null;
        }
    }