Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
MongoDB-POC
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Pavitra Mallemdoddi Papili
MongoDB-POC
Commits
fe6b0b26
Commit
fe6b0b26
authored
Mar 19, 2021
by
Pavitra Mallemdoddi Papili
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated comments
parent
e9184f72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletion
+33
-1
EmployeeService.java
src/main/java/com/poc/service/EmployeeService.java
+33
-1
No files found.
src/main/java/com/poc/service/EmployeeService.java
View file @
fe6b0b26
...
...
@@ -6,13 +6,45 @@ import com.poc.entity.Employee;
import
com.poc.model.Emp
;
public
interface
EmployeeService
{
/**
*
* @param empId
* @return
*/
public
Emp
findByEmpId
(
Long
empId
);
/**
*
* @param id
* @return
*/
public
Emp
findById
(
String
id
);
/**
*
* @return
*/
public
List
<
Emp
>
findAll
();
/**
*
* @param emp
* @return
*/
public
Emp
save
(
Emp
emp
);
/**
*
* @param emp
*/
public
void
saveOrUpdate
(
Emp
emp
);
/**
*
* @param sal
* @return
*/
public
List
<
Emp
>
findBySalary
(
Double
sal
);
/**
*
* @param empId
* @return
*/
public
Long
deleteByEmpId
(
Long
empId
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment