Subversion Repositories SmartDukaan

Rev

Rev 33247 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33247 Rev 33305
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository.dtr;
1
package com.spice.profitmandi.dao.repository.dtr;
2
 
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.dao.entity.dtr.User;
4
import com.spice.profitmandi.dao.entity.dtr.User;
-
 
5
import com.spice.profitmandi.dao.model.VerifiedB2CUsersModel;
5
import org.springframework.stereotype.Repository;
6
import org.springframework.stereotype.Repository;
6
 
7
 
-
 
8
import java.time.LocalDate;
7
import java.util.List;
9
import java.util.List;
8
import java.util.Set;
10
import java.util.Set;
9
 
11
 
10
/**
12
/**
11
 * @author ashikali
13
 * @author ashikali
Line 38... Line 40...
38
	public boolean isExistByEmailId(String emailId);
40
	public boolean isExistByEmailId(String emailId);
39
 
41
 
40
	public boolean isExistBySecondryEmailId(String emailId);
42
	public boolean isExistBySecondryEmailId(String emailId);
41
 
43
 
42
	public List<User> selectAll();
44
	public List<User> selectAll();
-
 
45
 
-
 
46
    public List<VerifiedB2CUsersModel> selectAllVerifiedUsers(LocalDate startDate, LocalDate endDate);
43
}
47
}
44
48