Subversion Repositories SmartDukaan

Rev

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

Rev 34658 Rev 35679
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository.auth;
1
package com.spice.profitmandi.dao.repository.auth;
2
 
2
 
3
import java.util.List;
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
 
-
 
5
import com.spice.profitmandi.dao.entity.auth.SipMaster;
4
import com.spice.profitmandi.dao.entity.auth.SipMaster;
6
import org.springframework.stereotype.Repository;
5
import org.springframework.stereotype.Repository;
7
 
6
 
8
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
-
 
9
import com.spice.profitmandi.dao.entity.auth.AuthUser;
-
 
10
 
-
 
11
@Repository
7
@Repository
12
public interface SipRepository {
8
public interface SipRepository {
13
 
9
 
14
    SipMaster selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
10
    SipMaster selectByEmailOrMobile(String emailOrMobile) throws ProfitMandiBusinessException;
15
 
11
 
-
 
12
    SipMaster selectByCallerId(String callerId) throws ProfitMandiBusinessException;
-
 
13
 
16
}
14
}