Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
22859 ashik.ali 1
package com.spice.profitmandi.service.purchase;
2
 
3
import org.springframework.stereotype.Service;
4
 
5
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
6
import com.spice.profitmandi.common.model.CheckItemQuantityRequest;
7
import com.spice.profitmandi.common.model.CheckItemQuantityResponse;
8
import com.spice.profitmandi.common.model.ScanNonSerializedRequest;
9
import com.spice.profitmandi.common.model.ScanSerializedRequest;
10
 
11
@Service
12
public interface PurchaseService {
13
	public void scanSerializedItems(ScanSerializedRequest scanSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
14
	public void scanNonSerializedItems(ScanNonSerializedRequest scanNonSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
15
	public CheckItemQuantityResponse checkItemQuantity(CheckItemQuantityRequest checkItemQuantityRequest, int fofoId);
16
}