Subversion Repositories SmartDukaan

Rev

Rev 25822 | Rev 29927 | 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
 
3
import org.springframework.stereotype.Service;
4
 
29198 manish 5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
25822 amit.gupta 6
import com.spice.profitmandi.common.model.SendNotificationModel;
7
 
8
@Service
9
public interface NotificationService {
29198 manish 10
	void sendNotification(SendNotificationModel sendNotificationModel) throws ProfitMandiBusinessException;
25822 amit.gupta 11
}