public static void WMRemovePartFromRequest(Int32 Sequence)
        {
            iPartRequestClient objService = new iPartRequestClient();

            try
            {
                Dictionary <string, object> dictionary = new Dictionary <string, object>();
                CustomProfile profile = CustomProfile.GetProfile();
                objService.RemovePartFromRequest_TempData(HttpContext.Current.Session.SessionID, profile.Personal.UserID.ToString(), ObjectName, Sequence, profile.DBConnection._constr);
            }
            catch (System.Exception ex)
            {
                Login.Profile.ErrorHandling(ex, "Request Template", "WMRemovePartFromRequest");
            }
            finally { objService.Close(); }
        }