Skip to content

Commit

Permalink
Move repository folder into root to enhance the separation of concerns
Browse files Browse the repository at this point in the history
  • Loading branch information
ibardos committed Jul 28, 2024
1 parent 76b0752 commit 8f2d6c5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ibardos.motoShop.service.repository;
package com.ibardos.motoShop.repository;

import com.ibardos.motoShop.entity.Manufacturer;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ibardos.motoShop.service.repository;
package com.ibardos.motoShop.repository;

import com.ibardos.motoShop.entity.MotorcycleModel;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.ibardos.motoShop.service.repository;
package com.ibardos.motoShop.repository;

import com.ibardos.motoShop.entity.MotorcycleStock;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.ibardos.motoShop.service;

import com.ibardos.motoShop.entity.Manufacturer;
import com.ibardos.motoShop.service.repository.ManufacturerRepository;
import com.ibardos.motoShop.repository.ManufacturerRepository;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.ibardos.motoShop.service;

import com.ibardos.motoShop.entity.MotorcycleModel;
import com.ibardos.motoShop.service.repository.MotorcycleModelRepository;
import com.ibardos.motoShop.repository.MotorcycleModelRepository;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.ibardos.motoShop.service;

import com.ibardos.motoShop.entity.MotorcycleStock;
import com.ibardos.motoShop.service.repository.MotorcycleStockRepository;
import com.ibardos.motoShop.repository.MotorcycleStockRepository;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
Expand Down

0 comments on commit 8f2d6c5

Please sign in to comment.