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