예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SMDepartmentController"/> class.
 /// </summary>
 /// <param name="departmentService">The department service.</param>
 public SMDepartmentController(ISMDepartmentService departmentService)
 {
     this.DepartmentService = departmentService;
 }
예제 #2
0
 public void TestInitialize()
 {
     this.SMDepartmentService = Substitute.For<ISMDepartmentService>();
 }