public static void WMRemovePartFromIssue(Int32 Sequence)
        {
            iPartIssueClient objService = new iPartIssueClient();

            try
            {
                Dictionary <string, object> dictionary = new Dictionary <string, object>();
                CustomProfile profile = CustomProfile.GetProfile();
                objService.RemovePartFromIssue_TempData(HttpContext.Current.Session.SessionID, profile.Personal.UserID.ToString(), ObjectName, Sequence, profile.DBConnection._constr);
            }
            catch { }
            finally { objService.Close(); }
        }