Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23418 ashik.ali 1
package com.spice.profitmandi.service.inventory;
2
 
3
import org.springframework.stereotype.Service;
4
 
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
6
import com.spice.profitmandi.common.model.CreatePrebookingListingRequest;
7
import com.spice.profitmandi.common.model.CreatePrebookingOrderRequest;
8
 
9
@Service
10
public interface PrebookingService {
11
	public void savePrebookingListing(int createrId, CreatePrebookingListingRequest createPrebookingListingRequest) throws ProfitMandiBusinessException;
12
	public void savePrebookingOrder(int fofoId, CreatePrebookingOrderRequest createPrebookingOrderRequest)  throws ProfitMandiBusinessException;
13
	public void activePrebookingListingById(int prebookingListingId) throws ProfitMandiBusinessException;
14
	public void expirePrebookingListingById(int prebookingListingId) throws ProfitMandiBusinessException;
15
}