Difference between revisions of "2020 - Option 5 is missing, it could be to remove a company"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
Line 8: Line 8:
 
Look for this section of the ModifyCompany method:
 
Look for this section of the ModifyCompany method:
  
<syntaxhighlight lang=chsarp>
+
<syntaxhighlight lang=chsharp>
                Console.Write("Enter ID of outlet: ");
+
 
                outletIndex = Convert.ToInt32(Console.ReadLine());
 
                if (outletIndex > 0 && outletIndex <= companies[index].GetNumberOfOutlets())
 
                {
 
                    if (choice == "2")
 
                    {
 
 
                         closeCompany = companies[index].CloseOutlet(outletIndex - 1);
 
                         closeCompany = companies[index].CloseOutlet(outletIndex - 1);
 
                         if (closeCompany)
 
                         if (closeCompany)
Line 21: Line 16:
 
                             companies.RemoveAt(index);
 
                             companies.RemoveAt(index);
 
                         }
 
                         }
                    }
+
 
                    else
 
                    {
 
                        companies[index].ExpandOutlet(outletIndex - 1);
 
                    }
 
                }
 
                else
 
                {
 
                    Console.WriteLine("Invalid outlet ID.");
 
                }
 
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Revision as of 14:04, 18 December 2019

Look at the Run method in the Simulation class

option 3 is to modify a company, so copy this case statement and change it to use 5 instead.


ModifyCompany method in Simulation

Look for the ModifyCompany method within the Simulation class.

Look for this section of the ModifyCompany method:

                        closeCompany = companies[index].CloseOutlet(outletIndex - 1);
                        if (closeCompany)
                        {
                            Console.WriteLine("That company has now closed down as it has no outlets.");
                            companies.RemoveAt(index);
                        }

The line 'companies.RemoveAt(index)' actually removes a company. So copy this line and create the new method below:

        public void RemoveComapny(int index)
        {

        }

Paste the copied code into this empty method.

Go back to the Run method in Simulation

You new case 5 can now run RemoveCompany(index) instead