Write a C# program that allows a custom fabric-dyeing workshop to calculate the total price of a dyeing job.
The program should:
- allow the user to enter the fabric length in meters (no validation is required)
- allow the user to enter the volume of dye used in milliliters (no validation is required)
- calculate the total cost of the job by:
- charging £1.45 for every meter of fabric
- charging a further £0.08 for every milliliter of dye
- output the final calculated cost.
You should use meaningful variable name(s), correct syntax and indentation in your answer.