Beispiel #1
0
 //TestResultContext _myService = ServiceLocator.Current.GetInstance<TestResultContext>();
 public HomeController(ILogger <HomeController> logger, IHandleData handleData)
 {
     _logger     = logger;
     _handleData = handleData;
 }
Beispiel #2
0
 public DiaryService(IHandleData handleData)
 {
     dataConnection = handleData;
     diary          = dataConnection.getDiary();
 }
Beispiel #3
0
 public SyncFiles(IReadFile readFile, IHandleData handleData)
 {
     this.readFile              = readFile;
     this.handleData            = handleData;
     this.handleData.unitOfWork = unitOfWork;
 }
Beispiel #4
0
 public MyApp(IHandleData merge)
 {
     _merge = merge;
 }
Beispiel #5
0
 public DiaryController(IHandleData handleData)
 {
     this.diaryService = new DiaryService(handleData);
 }