Subversion Repositories SmartDukaan

Rev

Rev 24159 | Rev 25366 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 24159 Rev 25139
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository.dtr;
1
package com.spice.profitmandi.dao.repository.dtr;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
import java.util.Set;
4
import java.util.Set;
5
 
5
 
6
import javax.transaction.Transactional;
-
 
7
 
-
 
8
import org.springframework.stereotype.Repository;
6
import org.springframework.stereotype.Repository;
9
 
7
 
10
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
11
import com.spice.profitmandi.dao.entity.dtr.User;
9
import com.spice.profitmandi.dao.entity.dtr.User;
12
 
10
 
13
/**
11
/**
14
 * @author ashikali
12
 * @author ashikali
15
 *
13
 *
16
 */
14
 */
17
@Repository
15
@Repository
18
@Transactional
-
 
19
public interface UserRepository {
16
public interface UserRepository {
20
	public void persist(User user);
17
	public void persist(User user);
21
 
18
 
22
	public User selectById(int id) throws ProfitMandiBusinessException;
19
	public User selectById(int id) throws ProfitMandiBusinessException;
23
 
20