Rev 29927 | Rev 30066 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.common.model.SendNotificationModel;import org.springframework.stereotype.Service;@Servicepublic interface NotificationService {void sendNotification(SendNotificationModel sendNotificationModel) throws ProfitMandiBusinessException;void sendNotificationToAll(SendNotificationModel sendNotificationModel) throws ProfitMandiBusinessException;void sendNotification(int fofoId, String campaignName, String title, String message) throws ProfitMandiBusinessException;}