public PhotoStore(PhotoRepo photoRepo, LocalFileFolders fileFolder, LocationService locationService) { _fileFolder = fileFolder; _locationService = locationService; _photoRepo = photoRepo; }
public AlbumService(PhotoStore photoStore, TripStore tripStore, LocationService locationService) { _tripStore = tripStore; _photoStore = photoStore; _locationService = locationService; }
public TripSmartBuilder(LocationService locationService, PhotoStore photoStore, DestinationBuilder destinationBuilder) { _locationService = locationService; _photoStore = photoStore; DestinationBuilder = destinationBuilder; }
public TripCreationService(TripStore tripStore, PhotoStore photoStore, LocationService locationService) { _photoStore = photoStore; _locationService = locationService; _tripStore = tripStore; }