package samuelb.capripol.Services;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import samuelb.capripol.Repositories.SightingRepository;
import samuelb.capripol.Sighting;

import java.util.Set;

@Service
public class SightingService {

    private SightingRepository sightingRepository;

    @Autowired
    public SightingService(SightingRepository sightingRepository) {
        this.sightingRepository = sightingRepository;
    }
}
