blob: 43b80e6d7f687f1e204aadc15c2af98d8b9ec06b [file] [log] [blame]
package com.pt.service;
import com.pt.entity.Download;
import com.pt.repository.DownloadRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class DownloadService {
@Autowired
private DownloadRepository downloadRepository;
public void save(Download download) {
downloadRepository.save(download);
}
public List<Download> getByResourceId(String resourceId) {
return downloadRepository.findByResourceId(resourceId);
}
}