package com.StudentServices.MarksService.repository; import com.StudentServices.MarksService.model.StudentMarks; import org.springframework.data.mongodb.repository.MongoRepository; import org.springframework.stereotype.Repository; @Repository public interface StudentRepository extends MongoRepository <StudentMarks, String> { }