Subversion Repositories SmartDukaan

Rev

Rev 29198 | Rev 30025 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
25822 amit.gupta 1
package com.spice.profitmandi.service;
2
 
29198 manish 3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
25822 amit.gupta 4
import com.spice.profitmandi.common.model.SendNotificationModel;
29927 amit.gupta 5
import org.springframework.stereotype.Service;
25822 amit.gupta 6
 
7
@Service
8
public interface NotificationService {
29198 manish 9
	void sendNotification(SendNotificationModel sendNotificationModel) throws ProfitMandiBusinessException;
29927 amit.gupta 10
 
11
	void sendNotificationToAll(SendNotificationModel sendNotificationModel) throws ProfitMandiBusinessException;
25822 amit.gupta 12
}