/// <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); } }
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(); }