Subversion Repositories SmartDukaan

Rev

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

Rev 35626 Rev 35631
Line 11... Line 11...
11
import com.spice.profitmandi.dao.model.FofoAbmReportingModel;
11
import com.spice.profitmandi.dao.model.FofoAbmReportingModel;
12
import com.spice.profitmandi.dao.model.FofoRBMReportingModel;
12
import com.spice.profitmandi.dao.model.FofoRBMReportingModel;
13
import com.spice.profitmandi.dao.model.FofoReportingModel;
13
import com.spice.profitmandi.dao.model.FofoReportingModel;
14
import org.springframework.stereotype.Service;
14
import org.springframework.stereotype.Service;
15
 
15
 
16
import com.spice.profitmandi.dao.entity.cs.TicketReadStatus.UserType;
-
 
17
import java.util.List;
16
import java.util.List;
18
import java.util.Map;
17
import java.util.Map;
19
import java.util.Set;
18
import java.util.Set;
20
 
19
 
21
@Service
20
@Service
Line 122... Line 121...
122
 
121
 
123
    Map<Integer, Activity> getLastActivitiesForTickets(List<Integer> ticketIds);
122
    Map<Integer, Activity> getLastActivitiesForTickets(List<Integer> ticketIds);
124
 
123
 
125
    void notifyPartnerOfExternalCommunication(Ticket ticket, Activity activity);
124
    void notifyPartnerOfExternalCommunication(Ticket ticket, Activity activity);
126
 
125
 
-
 
126
    /**
-
 
127
     * Get partner IDs for a specific auth user.
-
 
128
     * More efficient than getAuthUserPartnerIdMapping() which fetches ALL user mappings.
-
 
129
     */
-
 
130
    Set<Integer> getPartnerIdsByAuthUserId(int authUserId) throws ProfitMandiBusinessException;
-
 
131
 
127
}
132
}