forked from ericgu/DesignForTestability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmployee.cs
30 lines (27 loc) · 801 Bytes
/
Employee.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using designIssueExample.Filters;
using System;
namespace designIssueExample
{
public class Employee
{
public int Id { get; private set; }
public string Name { get; private set; }
public int Age { get; private set; }
public bool IsSalaried { get; private set; }
public Employee(int id, string name, int age, bool isSalaried)
{
this.Id = id;
this.Name = name;
this.Age = age;
this.IsSalaried = isSalaried;
}
public override string ToString()
{
return String.Format("{0} {1} {2} {3}", Id, Name, Age, IsSalaried);
}
public bool MatchesFilter(EmployeeFilter filter)
{
return filter.EmployeeMatches(this);
}
}
}