Skip to content

Commit

Permalink
refactor/rename
Browse files Browse the repository at this point in the history
  • Loading branch information
akozadaev committed Mar 20, 2023
1 parent 4d91648 commit 1e09348
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ru.tsutmb.dao;
package ru.tsutmb.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import ru.tsutmb.entities.Author;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ru.tsutmb.dao;
package ru.tsutmb.repository;

import org.springframework.data.jpa.repository.EntityGraph;
import org.springframework.data.jpa.repository.JpaRepository;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ru.tsutmb.dao;
package ru.tsutmb.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ru.tsutmb.dao;
package ru.tsutmb.repository;

import org.springframework.data.jpa.repository.JpaRepository;
import ru.tsutmb.entities.Genre;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ru/tsutmb/service/AuthorService.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import ru.tsutmb.dao.AuthorDao;
import ru.tsutmb.repository.AuthorDao;
import ru.tsutmb.entities.Author;

import java.util.List;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/ru/tsutmb/service/BookService.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.ObjectUtils;
import ru.tsutmb.dao.AuthorDao;
import ru.tsutmb.dao.BookDao;
import ru.tsutmb.dao.GenreDao;
import ru.tsutmb.repository.AuthorDao;
import ru.tsutmb.repository.BookDao;
import ru.tsutmb.repository.GenreDao;
import ru.tsutmb.entities.Author;
import ru.tsutmb.entities.Book;
import ru.tsutmb.entities.Genre;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/ru/tsutmb/service/CommentService.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import ru.tsutmb.dao.BookDao;
import ru.tsutmb.dao.CommentDao;
import ru.tsutmb.repository.BookDao;
import ru.tsutmb.repository.CommentDao;
import ru.tsutmb.entities.Book;
import ru.tsutmb.entities.Comment;

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ru/tsutmb/service/GenreService.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import ru.tsutmb.dao.GenreDao;
import ru.tsutmb.repository.GenreDao;
import ru.tsutmb.entities.Genre;


Expand Down

0 comments on commit 1e09348

Please sign in to comment.