示例#1
0
 public CSVFileServiceTest()
 {
     options = new Mock <IOptions <AppSettings> >();
     options.Setup(s => s.Value)
     .Returns(new AppSettings());
     sut = new CSVFileService(options.Object);
 }
示例#2
0
 public ServiceManager(ICSVFileService cSVFileService)
 {
     this.cSVFileService = cSVFileService;
 }