theme changed
This commit is contained in:
10
labs/lab9/LearningCenter/IEmployee.cs
Normal file
10
labs/lab9/LearningCenter/IEmployee.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System;
|
||||
|
||||
interface IEmployee
|
||||
{
|
||||
string Department { get; }
|
||||
string Position { get; }
|
||||
int Experience { get; }
|
||||
decimal GetMonthlyPay();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user