コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the MainViewModel class.
 /// </summary>
 public MainViewModel(ILogfileService logfileService)
 {
     _logfileService = logfileService;
     WelcomeTitle    = _logfileService.LogFile;
 }
コード例 #2
0
 public LogfileController(ILogfileService logfileService, HttpClient client)
 {
     _logfileService = logfileService;
     _client         = client;
 }