public static void Main()
Console.WriteLine("**Washing Machine Process**\n");
WashingMachine washingMachine = new WashingMachine();
Dryer dryer = new Dryer();
washingMachine.fillWasher();
washingMachine.setWasher();
washingMachine.washClothes();
public class WashingMachine
public string getMake() {
public void fillWasher() {
Console.WriteLine("Washer\nFill washer with dirty clothes");
public void setWasher() {
Console.WriteLine("Choose water temperature and cycle");
Console.WriteLine("Push start button");
public void washClothes() {
Console.WriteLine("Wash Clothes");
Console.WriteLine("Push pause button");
Console.WriteLine("Rinse");
Console.WriteLine("Spin Cycle");
Console.WriteLine("Beep Beep, Done!\n");
public string getmake() {
public void fillDryer() {
Console.WriteLine("Dryer\nFill dryer with clean clothes");
Console.WriteLine("Choose heat level and duration");
Console.WriteLine("Dry Clothes");