From da60ad911d9a77b62ababee6786e40101eaed33d Mon Sep 17 00:00:00 2001 From: "exercism-solutions-syncer[bot]" <211797793+exercism-solutions-syncer[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 14:51:31 +0000 Subject: [PATCH] [Sync Iteration] csharp/lucians-luscious-lasagna/1 --- .../1/LuciansLusciousLasagna.cs | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 solutions/csharp/lucians-luscious-lasagna/1/LuciansLusciousLasagna.cs diff --git a/solutions/csharp/lucians-luscious-lasagna/1/LuciansLusciousLasagna.cs b/solutions/csharp/lucians-luscious-lasagna/1/LuciansLusciousLasagna.cs new file mode 100644 index 0000000..b1de808 --- /dev/null +++ b/solutions/csharp/lucians-luscious-lasagna/1/LuciansLusciousLasagna.cs @@ -0,0 +1,23 @@ +class Lasagna +{ + // TODO: define the 'ExpectedMinutesInOven()' method + public int ExpectedMinutesInOven() + { + return 40; + } + // TODO: define the 'RemainingMinutesInOven()' method + public int RemainingMinutesInOven(int x) + { + return 40 - x; + } + // TODO: define the 'PreparationTimeInMinutes()' method + public int PreparationTimeInMinutes(int l) + { + return l * 2; + } + // TODO: define the 'ElapsedTimeInMinutes()' method + public int ElapsedTimeInMinutes(int l, int m) + { + return l * 2 + m; + } +}