PRAPRO2/src/main/java/com/example/prapro2spring/service/ActivityLogService.java

9 lines
295 B
Java

package com.example.prapro2spring.service;
import com.example.prapro2spring.model.ActivityLog;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Service;
@Service
public interface ActivityLogService extends JpaRepository<ActivityLog, Long> {
}