Пример #1
0
    protected void btnReject_Click(object sender, EventArgs e)
    {
        if (!string.IsNullOrEmpty(hdBranchID.Value))
        {
            Branch    oBranch    = new Branch(hdBranchID.Value);
            BranchDAL oBranchDAL = new BranchDAL();
            oBranch.UserDetails = ucUserDet.UserDetail;

            Result oResult = (Result)oBranchDAL.Reject(oBranch);
            if (oResult.Status)
            {
                ucMessage.OpenMessage(Constants.MSG_SUCCESS_REJECT, Constants.MSG_TYPE_SUCCESS);
            }
            else
            {
                ucMessage.OpenMessage(Constants.MSG_ERROR_REJECT, Constants.MSG_TYPE_ERROR);
            }
        }
        else
        {
            ucMessage.OpenMessage(Constants.MSG_ERROR_REJECT, Constants.MSG_TYPE_ERROR);
        }
    }