public static int Update(MGWordMatchItems o)
        {
            int iReturn = -1; //assume the worst

            SqlParameter[] arrParams = new SqlParameter[14];

            arrParams[0]  = new SqlParameter("@WMIID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMIID, o.WMIID.GetTypeCode()));
            arrParams[1]  = new SqlParameter("@WMID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMID, o.WMID.GetTypeCode()));
            arrParams[2]  = new SqlParameter("@MGID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MGID, o.MGID.GetTypeCode()));
            arrParams[3]  = new SqlParameter("@ItemImage", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.ItemImage, o.ItemImage.GetTypeCode()));
            arrParams[4]  = new SqlParameter("@EasyLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.EasyLabel, o.EasyLabel.GetTypeCode()));
            arrParams[5]  = new SqlParameter("@MediumLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MediumLabel, o.MediumLabel.GetTypeCode()));
            arrParams[6]  = new SqlParameter("@HardLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.HardLabel, o.HardLabel.GetTypeCode()));
            arrParams[7]  = new SqlParameter("@AudioEasy", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioEasy, o.AudioEasy.GetTypeCode()));
            arrParams[8]  = new SqlParameter("@AudioMedium", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioMedium, o.AudioMedium.GetTypeCode()));
            arrParams[9]  = new SqlParameter("@AudioHard", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioHard, o.AudioHard.GetTypeCode()));
            arrParams[10] = new SqlParameter("@LastModDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModDate, o.LastModDate.GetTypeCode()));
            arrParams[11] = new SqlParameter("@LastModUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModUser, o.LastModUser.GetTypeCode()));
            arrParams[12] = new SqlParameter("@AddedDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedDate, o.AddedDate.GetTypeCode()));
            arrParams[13] = new SqlParameter("@AddedUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedUser, o.AddedUser.GetTypeCode()));

            try
            {
                iReturn = SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_Update", arrParams);
            }

            catch (SqlException exx)
            {
                System.Diagnostics.Debug.Write(exx.Message);
            }

            return(iReturn);
        }
        public static int Insert(MGWordMatchItems o)
        {
            SqlParameter[] arrParams = new SqlParameter[14];

            arrParams[0]            = new SqlParameter("@WMID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMID, o.WMID.GetTypeCode()));
            arrParams[1]            = new SqlParameter("@MGID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MGID, o.MGID.GetTypeCode()));
            arrParams[2]            = new SqlParameter("@ItemImage", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.ItemImage, o.ItemImage.GetTypeCode()));
            arrParams[3]            = new SqlParameter("@EasyLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.EasyLabel, o.EasyLabel.GetTypeCode()));
            arrParams[4]            = new SqlParameter("@MediumLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MediumLabel, o.MediumLabel.GetTypeCode()));
            arrParams[5]            = new SqlParameter("@HardLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.HardLabel, o.HardLabel.GetTypeCode()));
            arrParams[6]            = new SqlParameter("@AudioEasy", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioEasy, o.AudioEasy.GetTypeCode()));
            arrParams[7]            = new SqlParameter("@AudioMedium", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioMedium, o.AudioMedium.GetTypeCode()));
            arrParams[8]            = new SqlParameter("@AudioHard", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioHard, o.AudioHard.GetTypeCode()));
            arrParams[9]            = new SqlParameter("@LastModDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModDate, o.LastModDate.GetTypeCode()));
            arrParams[10]           = new SqlParameter("@LastModUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModUser, o.LastModUser.GetTypeCode()));
            arrParams[11]           = new SqlParameter("@AddedDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedDate, o.AddedDate.GetTypeCode()));
            arrParams[12]           = new SqlParameter("@AddedUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedUser, o.AddedUser.GetTypeCode()));
            arrParams[13]           = new SqlParameter("@WMIID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMIID, o.WMIID.GetTypeCode()));
            arrParams[13].Direction = ParameterDirection.Output;

            SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_Insert", arrParams);

            o.WMIID = int.Parse(arrParams[13].Value.ToString());

            return(o.WMIID);
        }
        public static int Delete(MGWordMatchItems o)
        {
            int iReturn = -1; //assume the worst

            SqlParameter[] arrParams = new SqlParameter[1];

            arrParams[0] = new SqlParameter("@WMIID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMIID, o.WMIID.GetTypeCode()));

            try
            {
                iReturn = SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_Delete", arrParams);
            }

            catch (SqlException exx)
            {
                System.Diagnostics.Debug.Write(exx.Message);
            }

            return(iReturn);
        }
        protected void DvItemCommand(object sender, DetailsViewCommandEventArgs e)
        {
            string returnURL = "~/ControlRoom/Modules/Setup/MGWordMatchItemsList.aspx";
            if (e.CommandName.ToLower() == "back")
            {
                Response.Redirect(returnURL);
            }
            if (e.CommandName.ToLower() == "refresh")
            {
                try
                {
                    odsData.DataBind();
                    dv.DataBind();
                    dv.ChangeMode(DetailsViewMode.Edit);

                    var masterPage = (IControlRoomMaster)Master;
                    if (masterPage != null) masterPage.PageMessage = SRPResources.RefreshOK;
                }
                catch (Exception ex)
                {
                    var masterPage = (IControlRoomMaster)Master;
                    masterPage.PageError = String.Format(SRPResources.ApplicationError1, ex.Message);
                }
            }
            if (e.CommandName.ToLower() == "add" || e.CommandName.ToLower() == "addandback")
            {
                try
                {
                    var obj = new MGWordMatchItems();

                    obj.WMID = FormatHelper.SafeToInt(lblWMID.Text);
                    obj.MGID = FormatHelper.SafeToInt(lblMGID.Text);
                    
                    //obj.ItemImage = ((TextBox)((DetailsView)sender).FindControl("ItemImage")).Text;
                    obj.EasyLabel = ((TextBox)((DetailsView)sender).FindControl("EasyLabel")).Text;
                    obj.MediumLabel = ((TextBox)((DetailsView)sender).FindControl("MediumLabel")).Text;
                    obj.HardLabel = ((TextBox)((DetailsView)sender).FindControl("HardLabel")).Text;
                    //obj.AudioEasy = ((TextBox)((DetailsView)sender).FindControl("AudioEasy")).Text;
                    //obj.AudioMedium = ((TextBox)((DetailsView)sender).FindControl("AudioMedium")).Text;
                    //obj.AudioHard = ((TextBox)((DetailsView)sender).FindControl("AudioHard")).Text;

                    obj.AddedDate = DateTime.Now;
                    obj.AddedUser = ((SRPUser)Session[SessionData.UserProfile.ToString()]).Username;  //"N/A";  // Get from session
                    obj.LastModDate = obj.AddedDate;
                    obj.LastModUser = obj.AddedUser;

                    if (obj.IsValid(BusinessRulesValidationMode.INSERT))
                    {
                        obj.Insert();
                        if (e.CommandName.ToLower() == "addandback")
                        {
                            Response.Redirect(returnURL);
                        }

                        lblPK.Text = obj.WMIID.ToString();

                        odsData.DataBind();
                        dv.DataBind();
                        dv.ChangeMode(DetailsViewMode.Edit);

                        var masterPage = (IControlRoomMaster)Master;
                        masterPage.PageMessage = SRPResources.AddedOK;
                    }
                    else
                    {
                        var masterPage = (IControlRoomMaster)Master;
                        string message = String.Format(SRPResources.ApplicationError1, "<ul>");
                        foreach (BusinessRulesValidationMessage m in obj.ErrorCodes)
                        {
                            message = string.Format(String.Format("{0}<li>{{0}}</li>", message), m.ErrorMessage);
                        }
                        message = string.Format("{0}</ul>", message);
                        masterPage.PageError = message;
                    }
                }
                catch (Exception ex)
                {
                    var masterPage = (IControlRoomMaster)Master;
                    masterPage.PageError = String.Format(SRPResources.ApplicationError1, ex.Message);
                }
            }
            if (e.CommandName.ToLower() == "save" || e.CommandName.ToLower() == "saveandback")
            {
                try
                {
                    var obj = new MGWordMatchItems();
                    int pk = int.Parse(((TextBox)((DetailsView)sender).FindControl("WMIID")).Text);
                    obj.Fetch(pk);

                    obj.WMID = FormatHelper.SafeToInt(lblWMID.Text);
                    obj.MGID = FormatHelper.SafeToInt(lblMGID.Text);

                    //obj.ItemImage = ((TextBox)((DetailsView)sender).FindControl("ItemImage")).Text;
                    obj.EasyLabel = ((TextBox)((DetailsView)sender).FindControl("EasyLabel")).Text;
                    obj.MediumLabel = ((TextBox)((DetailsView)sender).FindControl("MediumLabel")).Text;
                    obj.HardLabel = ((TextBox)((DetailsView)sender).FindControl("HardLabel")).Text;
                    //obj.AudioEasy = ((TextBox)((DetailsView)sender).FindControl("AudioEasy")).Text;
                    //obj.AudioMedium = ((TextBox)((DetailsView)sender).FindControl("AudioMedium")).Text;
                    //obj.AudioHard = ((TextBox)((DetailsView)sender).FindControl("AudioHard")).Text;

                    obj.LastModDate = DateTime.Now;
                    obj.LastModUser = ((SRPUser)Session[SessionData.UserProfile.ToString()]).Username;  //"N/A";  // Get from session

                    if (obj.IsValid(BusinessRulesValidationMode.UPDATE))
                    {
                        obj.Update();
                        if (e.CommandName.ToLower() == "saveandback")
                        {
                            Response.Redirect(returnURL);
                        }

                        odsData.DataBind();
                        dv.DataBind();
                        dv.ChangeMode(DetailsViewMode.Edit);

                        var masterPage = (IControlRoomMaster)Master;
                        masterPage.PageMessage = SRPResources.SaveOK;
                    }
                    else
                    {
                        var masterPage = (IControlRoomMaster)Master;
                        string message = String.Format(SRPResources.ApplicationError1, "<ul>");
                        foreach (BusinessRulesValidationMessage m in obj.ErrorCodes)
                        {
                            message = string.Format(String.Format("{0}<li>{{0}}</li>", message), m.ErrorMessage);
                        }
                        message = string.Format("{0}</ul>", message);
                        masterPage.PageError = message;
                    }
                }
                catch (Exception ex)
                {
                    var masterPage = (IControlRoomMaster)Master;
                    masterPage.PageError = String.Format(SRPResources.ApplicationError1, ex.Message);
                }
            }
        }
        public static int Delete(MGWordMatchItems o)
        {

            int iReturn = -1; //assume the worst

            SqlParameter[] arrParams = new SqlParameter[1];

            arrParams[0] = new SqlParameter("@WMIID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMIID, o.WMIID.GetTypeCode()));

            try
            {

                iReturn = SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_Delete", arrParams);

            }

            catch (SqlException exx)
            {

                System.Diagnostics.Debug.Write(exx.Message);

            }

            return iReturn;

        }
        public static int Update(MGWordMatchItems o)
        {

            int iReturn = -1; //assume the worst

            SqlParameter[] arrParams = new SqlParameter[14];

            arrParams[0] = new SqlParameter("@WMIID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMIID, o.WMIID.GetTypeCode()));
            arrParams[1] = new SqlParameter("@WMID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMID, o.WMID.GetTypeCode()));
            arrParams[2] = new SqlParameter("@MGID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MGID, o.MGID.GetTypeCode()));
            arrParams[3] = new SqlParameter("@ItemImage", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.ItemImage, o.ItemImage.GetTypeCode()));
            arrParams[4] = new SqlParameter("@EasyLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.EasyLabel, o.EasyLabel.GetTypeCode()));
            arrParams[5] = new SqlParameter("@MediumLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MediumLabel, o.MediumLabel.GetTypeCode()));
            arrParams[6] = new SqlParameter("@HardLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.HardLabel, o.HardLabel.GetTypeCode()));
            arrParams[7] = new SqlParameter("@AudioEasy", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioEasy, o.AudioEasy.GetTypeCode()));
            arrParams[8] = new SqlParameter("@AudioMedium", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioMedium, o.AudioMedium.GetTypeCode()));
            arrParams[9] = new SqlParameter("@AudioHard", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioHard, o.AudioHard.GetTypeCode()));
            arrParams[10] = new SqlParameter("@LastModDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModDate, o.LastModDate.GetTypeCode()));
            arrParams[11] = new SqlParameter("@LastModUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModUser, o.LastModUser.GetTypeCode()));
            arrParams[12] = new SqlParameter("@AddedDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedDate, o.AddedDate.GetTypeCode()));
            arrParams[13] = new SqlParameter("@AddedUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedUser, o.AddedUser.GetTypeCode()));

            try
            {

                iReturn = SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_Update", arrParams);

            }

            catch (SqlException exx)
            {

                System.Diagnostics.Debug.Write(exx.Message);

            }

            return iReturn;

        }
        public static int Insert(MGWordMatchItems o)
        {

            SqlParameter[] arrParams = new SqlParameter[14];

            arrParams[0] = new SqlParameter("@WMID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMID, o.WMID.GetTypeCode()));
            arrParams[1] = new SqlParameter("@MGID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MGID, o.MGID.GetTypeCode()));
            arrParams[2] = new SqlParameter("@ItemImage", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.ItemImage, o.ItemImage.GetTypeCode()));
            arrParams[3] = new SqlParameter("@EasyLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.EasyLabel, o.EasyLabel.GetTypeCode()));
            arrParams[4] = new SqlParameter("@MediumLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.MediumLabel, o.MediumLabel.GetTypeCode()));
            arrParams[5] = new SqlParameter("@HardLabel", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.HardLabel, o.HardLabel.GetTypeCode()));
            arrParams[6] = new SqlParameter("@AudioEasy", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioEasy, o.AudioEasy.GetTypeCode()));
            arrParams[7] = new SqlParameter("@AudioMedium", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioMedium, o.AudioMedium.GetTypeCode()));
            arrParams[8] = new SqlParameter("@AudioHard", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AudioHard, o.AudioHard.GetTypeCode()));
            arrParams[9] = new SqlParameter("@LastModDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModDate, o.LastModDate.GetTypeCode()));
            arrParams[10] = new SqlParameter("@LastModUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.LastModUser, o.LastModUser.GetTypeCode()));
            arrParams[11] = new SqlParameter("@AddedDate", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedDate, o.AddedDate.GetTypeCode()));
            arrParams[12] = new SqlParameter("@AddedUser", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.AddedUser, o.AddedUser.GetTypeCode()));
            arrParams[13] = new SqlParameter("@WMIID", GRA.SRP.Core.Utilities.GlobalUtilities.DBSafeValue(o.WMIID, o.WMIID.GetTypeCode()));
            arrParams[13].Direction = ParameterDirection.Output;

            SqlHelper.ExecuteNonQuery(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_Insert", arrParams);

            o.WMIID = int.Parse(arrParams[13].Value.ToString());

            return o.WMIID;

        }
        public bool Fetch(int WMIID)
        {

            // declare reader

            SqlDataReader dr;

            SqlParameter[] arrParams = new SqlParameter[1];

            arrParams[0] = new SqlParameter("@WMIID", WMIID);

            dr = SqlHelper.ExecuteReader(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_GetByID", arrParams);

            if (dr.Read())
            {

                // declare return value

                MGWordMatchItems result = new MGWordMatchItems();

                DateTime _datetime;

                int _int;

                //decimal _decimal;

                if (int.TryParse(dr["WMIID"].ToString(), out _int)) this.WMIID = _int;
                if (int.TryParse(dr["WMID"].ToString(), out _int)) this.WMID = _int;
                if (int.TryParse(dr["MGID"].ToString(), out _int)) this.MGID = _int;
                this.ItemImage = dr["ItemImage"].ToString();
                this.EasyLabel = dr["EasyLabel"].ToString();
                this.MediumLabel = dr["MediumLabel"].ToString();
                this.HardLabel = dr["HardLabel"].ToString();
                this.AudioEasy = dr["AudioEasy"].ToString();
                this.AudioMedium = dr["AudioMedium"].ToString();
                this.AudioHard = dr["AudioHard"].ToString();
                if (DateTime.TryParse(dr["LastModDate"].ToString(), out _datetime)) this.LastModDate = _datetime;
                this.LastModUser = dr["LastModUser"].ToString();
                if (DateTime.TryParse(dr["AddedDate"].ToString(), out _datetime)) this.AddedDate = _datetime;
                this.AddedUser = dr["AddedUser"].ToString();

                dr.Close();

                return true;

            }

            dr.Close();

            return false;

        }
        public bool Fetch(int WMIID)
        {
            // declare reader

            SqlDataReader dr;

            SqlParameter[] arrParams = new SqlParameter[1];

            arrParams[0] = new SqlParameter("@WMIID", WMIID);

            dr = SqlHelper.ExecuteReader(conn, CommandType.StoredProcedure, "app_MGWordMatchItems_GetByID", arrParams);

            if (dr.Read())
            {
                // declare return value

                MGWordMatchItems result = new MGWordMatchItems();

                DateTime _datetime;

                int _int;

                //decimal _decimal;

                if (int.TryParse(dr["WMIID"].ToString(), out _int))
                {
                    this.WMIID = _int;
                }
                if (int.TryParse(dr["WMID"].ToString(), out _int))
                {
                    this.WMID = _int;
                }
                if (int.TryParse(dr["MGID"].ToString(), out _int))
                {
                    this.MGID = _int;
                }
                this.ItemImage   = dr["ItemImage"].ToString();
                this.EasyLabel   = dr["EasyLabel"].ToString();
                this.MediumLabel = dr["MediumLabel"].ToString();
                this.HardLabel   = dr["HardLabel"].ToString();
                this.AudioEasy   = dr["AudioEasy"].ToString();
                this.AudioMedium = dr["AudioMedium"].ToString();
                this.AudioHard   = dr["AudioHard"].ToString();
                if (DateTime.TryParse(dr["LastModDate"].ToString(), out _datetime))
                {
                    this.LastModDate = _datetime;
                }
                this.LastModUser = dr["LastModUser"].ToString();
                if (DateTime.TryParse(dr["AddedDate"].ToString(), out _datetime))
                {
                    this.AddedDate = _datetime;
                }
                this.AddedUser = dr["AddedUser"].ToString();

                dr.Close();

                return(true);
            }

            dr.Close();

            return(false);
        }
        protected void GvRowCommand(object sender, GridViewCommandEventArgs e)
        {
            string editpage = "~/ControlRoom/Modules/Setup/MGWordMatchItemsAddEdit.aspx";
            if (e.CommandName.ToLower() == "addrecord")
            {
                Response.Redirect(String.Format("{0}?MGID={1}&WMID={2}", editpage, lblMGID.Text, lblWMID.Text));
                //Response.Redirect(editpage);
            }
            if (e.CommandName.ToLower() == "back")
            {
                Response.Redirect("~/ControlRoom/Modules/Setup/MGWordMatchAddEdit.aspx");
            }
            if (e.CommandName.ToLower() == "editrecord")
            {
                int key = Convert.ToInt32(e.CommandArgument);
                Response.Redirect(String.Format("{0}?PK={1}", editpage, key));
            }
            if (e.CommandName.ToLower() == "deleterecord")
            {
                var key = Convert.ToInt32(e.CommandArgument);
                try
                {
                    var obj = new MGWordMatchItems();
                    if (obj.IsValid(BusinessRulesValidationMode.DELETE))
                    {
                        MGWordMatchItems.FetchObject(key).Delete();

                        LoadData();
                        var masterPage = (IControlRoomMaster)Master;
                        if (masterPage != null) masterPage.PageMessage = SRPResources.DeleteOK;
                    }
                    else
                    {
                        var masterPage = (IControlRoomMaster)Master;
                        string message = String.Format(SRPResources.ApplicationError1, "<ul>");
                        foreach (BusinessRulesValidationMessage m in obj.ErrorCodes)
                        {
                            message = string.Format(String.Format("{0}<li>{{0}}</li>", message), m.ErrorMessage);
                        }
                        message = string.Format("{0}</ul>", message);
                        if (masterPage != null) masterPage.PageError = message;
                    }
                }
                catch (Exception ex)
                {
                    var masterPage = (IControlRoomMaster)Master;
                    if (masterPage != null)
                        masterPage.PageError = String.Format(SRPResources.ApplicationError1, ex.Message);
                }
            }
        }