11 lines
157 B
C#
11 lines
157 B
C#
using System;
|
|
|
|
interface IEmployee
|
|
{
|
|
string Department { get; }
|
|
string Position { get; }
|
|
int Experience { get; }
|
|
decimal GetMonthlyPay();
|
|
}
|
|
|