/// <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; }
public void TestInitialize() { this.SMEmployeeService = Substitute.For<ISMEmployeeService>(); }