Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SMEmployeeController"/> class.
 /// </summary>
 /// <param name="employeeService">The employee service.</param>
 public SMEmployeeController(ISMEmployeeService employeeService)
 {
     this.EmployeeService = employeeService;
 }
Beispiel #2
0
 public void TestInitialize()
 {
     this.SMEmployeeService = Substitute.For<ISMEmployeeService>();
 }