Esempio n. 1
0
 private static void AddProductCommand(Catalog catalog, Command command, StringBuilder output)
 {
     catalog.Add(new Content()
         {
             Name = command.Parameters[(int) ContentItemTypes.Name],
             Price = double.Parse(command.Parameters[(int) ContentItemTypes.Price]),
             Producer = command.Parameters[(int) ContentItemTypes.Producer]
         });
     output.AppendLine("Product added");
 }
Esempio n. 2
0
        public static void Main()
        {
            var output = new StringBuilder();
            var catalog = new Catalog();
            var c = new CommandExecutor();

            var commands = ParseCommands();
            foreach (var command in commands)
            {
                c.ExecuteCommand(catalog, command, output);
            }

            Console.Write(output);
        }
Esempio n. 3
0
 private void FindProductsByPriceRangeCommand(Catalog catalog, Command command, StringBuilder output)
 {
     var contentList = catalog.GetContentByPriceRange(double.Parse(command.Parameters[0]), double.Parse(command.Parameters[1]));
     if (contentList != null && contentList.Count() > 0)
     {
         foreach (var content in contentList)
         {
             output.AppendLine(content.ToString());
         }
     }
     else
     {
         output.AppendLine("No products found");
     }
 }
Esempio n. 4
0
        private static void DeleteProductsCommand(Catalog catalog, Command command, StringBuilder output)
        {
            int updatedCount = 0;

            if (command.Parameters.Length > 1)
            {
                updatedCount = catalog.Delete(command.Parameters[0], command.Parameters[1]);
            }
            else
            {
                updatedCount = catalog.Delete(string.Empty, command.Parameters[0]);
            }

            if (updatedCount > 0)
            {
                output.AppendLine(String.Format("{0} products deleted", updatedCount));
            }
            else
            {
                output.AppendLine("No products found");
            }
        }
Esempio n. 5
0
 public void ExecuteCommand(Catalog catalog, Command command, StringBuilder output)
 {
     switch (command.Type)
     {
         case CommandTypes.AddProduct:
             AddProductCommand(catalog, command, output);
             break;
         case CommandTypes.DeleteProducts:
             DeleteProductsCommand(catalog, command, output);
             break;
         case CommandTypes.FindProductsByName:
             FindProductsByNameCommand(catalog, command, output);
             break;
         case CommandTypes.FindProductsByPriceRange:
             FindProductsByPriceRangeCommand(catalog, command, output);
             break;
         case CommandTypes.FindProductsByProducer:
             FindProductsByProducerCommand(catalog, command, output);
             break;
         default:
             throw new ArgumentException("Unknown command: " + command.Type.ToString());
     }
 }