public static void Main(string[] args) { CarCatalog carCatalog = new CarCatalog(); int lines = int.Parse(Console.ReadLine()); for (int i = 0; i < lines; i++) { string[] parameters = Console.ReadLine() .Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); carCatalog.Add(parameters); } string command = Console.ReadLine(); if (command == "fragile") { List <string> fragile = carCatalog.GetCars() .Where(x => x.Cargo.Type == "fragile" && x.Tires.Any(y => y.Pressure < 1)) .Select(x => x.Model) .ToList(); Console.WriteLine(string.Join(Environment.NewLine, fragile)); } else { List <string> flamable = carCatalog.GetCars() .Where(x => x.Cargo.Type == "flamable" && x.Engine.Power > 250) .Select(x => x.Model) .ToList(); Console.WriteLine(string.Join(Environment.NewLine, flamable)); } }
public string GetCars(string command, CarCatalog carCatalog) { StringBuilder sb = new StringBuilder(); if (command == "fragile") { List <string> fragile = carCatalog.GetCars() .Where(x => x.Cargo.Type == "fragile" && x.Tires.Any(y => y.Pressure < 1)) .Select(x => x.Model) .ToList(); sb.AppendLine(string.Join(Environment.NewLine, fragile)); } else { List <string> flamable = carCatalog.GetCars() .Where(x => x.Cargo.Type == "flamable" && x.Engine.Power > 250) .Select(x => x.Model) .ToList(); sb.AppendLine(string.Join(Environment.NewLine, flamable)); } return(sb.ToString().Trim()); }
public void Run() { CarFactory carFactory = new CarFactory(); EngineFactory engineFactory = new EngineFactory(); CargoFactory cargoFactory = new CargoFactory(); TireFactory tireFactory = new TireFactory(); CarCatalog carCatalog = new CarCatalog(carFactory, engineFactory, cargoFactory, tireFactory); int lines = int.Parse(Console.ReadLine()); for (int i = 0; i < lines; i++) { string[] parameters = Console.ReadLine() ?.Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); carCatalog.Add(parameters); } string command = Console.ReadLine(); switch (command) { case "fragile": List <string> fragile = carCatalog.GetCars() .Where(x => x.Cargo.Type == "fragile" && x.Tires.Any(y => y.Pressure < 1)) .Select(x => x.Model) .ToList(); PrintInfo(fragile); break; case "flamable": List <string> flamable = carCatalog.GetCars() .Where(x => x.Cargo.Type == "flamable" && x.Engine.Power > 250) .Select(x => x.Model) .ToList(); PrintInfo(flamable); break; } }