コード例 #1
0
 public AllocationFacadeService(IAllocationService allocationService, IAllocationReportsService allocationReportsService)
 {
     this.allocationService        = allocationService;
     this.allocationReportsService = allocationReportsService;
 }
コード例 #2
0
 public void SetUpContext()
 {
     this.AllocationService        = Substitute.For <IAllocationService>();
     this.AllocationReportsService = Substitute.For <IAllocationReportsService>();
     this.Sut = new AllocationFacadeService(this.AllocationService, this.AllocationReportsService);
 }