Esempio n. 1
0
 public void SetUpContext()
 {
     this.ProductReports = Substitute.For <IProductReports>();
     this.Sut            = new ProductsReportsService(this.ProductReports);
 }
Esempio n. 2
0
 public ProductsReportsService(IProductReports productReports)
 {
     this.productReports = productReports;
 }