the class of the work order with the fields number, month, technological operation(class), quantity, price, amount, worker(class)
class workOrder { public int number; public string month; public technologicalOperation technologicalOperation; public double quantity; public double price; public double amount; public worker worker; }