Subversion Repositories SmartDukaan

Rev

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

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