// To pass 'Group' data in GroupDAL Data Access Layer to show selected GroupId record
    public DataTable SelectGroupID(int GroupId, int LoggedInUser, string returnmsg)
    {
        GroupDAL GroupDAL = new GroupDAL();

        try
        {
            return(GroupDAL.SelectGroupID(GroupId, LoggedInUser, returnmsg));
        }
        catch
        {
            throw;
        }
        finally
        {
            GroupDAL = null;
        }
    }
 // To pass 'Group' data in GroupDAL Data Access Layer to show selected GroupId record
 public DataTable SelectGroupID(int GroupId,int LoggedInUser, string returnmsg)
 {
     GroupDAL GroupDAL = new GroupDAL();
     try
     {
         return GroupDAL.SelectGroupID(GroupId, LoggedInUser, returnmsg);
     }
     catch
     {
         throw;
     }
     finally
     {
         GroupDAL = null;
     }
 }