class from descriptionTue, 07 Feb 2023

the class of the work order with the fields number, month, technological operation, quantity, price, amount, worker

class WorkOrder { public int Number { get; set; } public int Month { get; set; } public string TechnologicalOperation { get; set; } public int Quantity { get; set; } public double Price { get; set; } public double Amount { get; set; } public string Worker { get; set; } }

Want to kickstart your project?Use the new AI Studio to create your code