conorH22/bike-rental

View on GitHub
src/main/java/com/csharp/bikerental/persistence/repo/TwoWheelRepository.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.csharp.bikerental.persistence.repo;

import com.csharp.bikerental.persistence.model.TwoWheel.TwoWheel;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;



@Repository
public interface TwoWheelRepository extends CrudRepository<TwoWheel, String> {
   TwoWheel findByIdentifier(String identifier);


}