Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
31662 amit.gupta 1
package com.spice.profitmandi.dao.repository.cs;
2
 
3
 
4
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
5
import org.springframework.stereotype.Service;
6
 
7
import java.util.Set;
8
 
9
@Service
10
public interface CsService1 {
11
    Set<Integer> getAuthFofoIds(String email, boolean active) throws ProfitMandiBusinessException;
12
}