Subversion Repositories SmartDukaan

Rev

Rev 22925 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.purchase;

import org.springframework.stereotype.Service;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.common.model.CheckItemQuantityRequest;
import com.spice.profitmandi.common.model.CheckItemQuantityResponse;
import com.spice.profitmandi.common.model.ScanNonSerializedRequest;
import com.spice.profitmandi.common.model.ScanSerializedRequest;

@Service
public interface PurchaseService {
        public void scanSerializedItems(ScanSerializedRequest scanSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
        public void scanNonSerializedItems(ScanNonSerializedRequest scanNonSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
        public CheckItemQuantityResponse checkItemQuantity(CheckItemQuantityRequest checkItemQuantityRequest, int fofoId);
}