Ejemplo n.º 1
0
    protected void btnReject_Click(object sender, EventArgs e)
    {
        SPTypeDAL oSPTypeDAL = new SPTypeDAL();
        SPType    oSPType    = new SPType(hdSPTypeID.Value);

        oSPType.UserDetails = ucUserDet.UserDetail;

        Result oResult = (Result)oSPTypeDAL.Reject(oSPType);

        if (oResult.Status)
        {
            ucMessage.OpenMessage(Constants.MSG_SUCCESS_REJECT, Constants.MSG_TYPE_SUCCESS);
        }
        else
        {
            ucMessage.OpenMessage(Constants.MSG_ERROR_REJECT, Constants.MSG_TYPE_ERROR);
        }
    }