Files
oop/labs/lab9/LearningCenter/IEmployee.cs
2025-09-30 08:21:09 +03:00

11 lines
157 B
C#

using System;
interface IEmployee
{
string Department { get; }
string Position { get; }
int Experience { get; }
decimal GetMonthlyPay();
}