Subversion Repositories SmartDukaan

Rev

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

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