Commit 09997c7a authored by Rajeshekar's avatar Rajeshekar

Team details issue fixed

parent f1fd8a15
...@@ -7,8 +7,10 @@ import org.springframework.data.mongodb.repository.MongoRepository; ...@@ -7,8 +7,10 @@ import org.springframework.data.mongodb.repository.MongoRepository;
import com.nisum.mytime.model.Project; import com.nisum.mytime.model.Project;
public interface ProjectRepo extends MongoRepository<Project, String> { public interface ProjectRepo extends MongoRepository<Project, String> {
Project findByProjectId(String projectId); Project findByProjectId(String projectId);
//List<Project> findByManagerId(String managerId); List<Project> findByDeliveryLeadIds(String empId);
}
\ No newline at end of file // List<Project> findByManagerId(String managerId);
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment