Skip to content

Commit

Permalink
이슈 #39 FreeRepository 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeun committed Jan 17, 2024
1 parent 6306f90 commit 9085924
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/java/umc/forgrad/repository/FreeRepository.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package umc.forgrad.repository;

import umc.forgrad.domain.common.Free;

import java.util.List;
import java.util.Optional;

public interface FreeRepository {
Free save(Free free);
Optional<Free> findById(Long id);
List<Free> findAll();
}

0 comments on commit 9085924

Please sign in to comment.