}//Populate the Combobox and load list

        public void LoadServiceContract()
        {
            SCLogic SC_L = new SCLogic();

            List_Of_Service_Contract_OB = SC_L.ViewServiceContrac();
            foreach (ServiceContract SC in List_Of_Service_Contract_OB)
            {
                ListViewItem lst = new ListViewItem(new string[]
                {
                    SC.Id.ToString(),
                    SC.Description,
                    SC.DateFinalised.ToString(),
                    SC.DateTerminated.ToString(),
                    SC.Cost.ToString(),
                    SC.Status,
                    SC.identifier
                });

                lst.Tag = SC;
            }
        }//Load the list of service contracts