C Sharp (C#) - Interfaces
What is wrong with this interface implementation?
interface IWorker {
void Work();
}
class Employee : IWorker {
public void Work(int hours) { Console.WriteLine($"Working {hours} hours"); }
}