Exemplo n.º 1
0
        /// <summary>
        /// Consider this a reset to how the code sample was provided
        /// </summary>
        static void RigCategoryProducts()
        {
            var ops = new RowPositionWorker();

            var catIdentifiers = ops.CategoryIdentifiers();

            foreach (var id in catIdentifiers)
            {
                ops.ProductTable(id);
                Console.WriteLine(id);
            }
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            var ops = new RowPositionWorker();

            if (ops.RigSuppliersTable())
            {
                Console.WriteLine("Supplier table successfully has RowPosition");
            }
            else
            {
                Console.WriteLine($"{ops.LastExceptionMessage}");
            }

            Console.ReadLine();
        }