Beispiel #1
0
        public void SetUpContext()
        {
            this.AteReportsService = Substitute.For <IAteReportsService>();

            this.Sut = new AteReportsFacadeService(this.AteReportsService);
        }
Beispiel #2
0
 public AteReportsFacadeService(IAteReportsService ateReportsService)
 {
     this.ateReportsService = ateReportsService;
 }