コード例 #1
0
 public TripHistoryService(IDeviceFileSystemService fileSystemService)
 {
     _fileSystemService = fileSystemService;
 }
コード例 #2
0
 public VehicleHistoryService(IDeviceFileSystemService fileSystemService, ITripHistoryService tripService)
 {
     _fileSystemService = fileSystemService;
     _tripService       = tripService;
 }