Exemplo n.º 1
0
 // To pass 'Group' data in GroupDAL Data Access Layer to show Change Status of selected GroupId record
 public int ChangeGroupStatus(int GroupId, int LoggedInUser, string returnmsg, bool IsActive)
 {
     GroupDAL GroupDAL = new GroupDAL();
     try
     {
         return GroupDAL.ChangeGroupStatus(GroupId, LoggedInUser, returnmsg, IsActive);
     }
     catch
     {
         throw;
     }
     finally
     {
         GroupDAL = null;
     }
 }
Exemplo n.º 2
0
    // To pass 'Group' data in GroupDAL Data Access Layer to show Change Status of selected GroupId record
    public int ChangeGroupStatus(int GroupId, int LoggedInUser, string returnmsg, bool IsActive)
    {
        GroupDAL GroupDAL = new GroupDAL();

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