Exemple #1
0
 public TripHistoryService(IDeviceFileSystemService fileSystemService)
 {
     _fileSystemService = fileSystemService;
 }
 public VehicleHistoryService(IDeviceFileSystemService fileSystemService, ITripHistoryService tripService)
 {
     _fileSystemService = fileSystemService;
     _tripService       = tripService;
 }