Subversion Repositories SmartDukaan

Rev

Rev 30826 | Rev 33239 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28493 tejbeer 1
package com.spice.profitmandi.service.warehouse;
2
 
32194 tejbeer 3
import java.util.List;
4
 
5
import org.springframework.stereotype.Service;
6
 
30826 amit.gupta 7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
32194 tejbeer 8
import com.spice.profitmandi.common.model.ItemDescriptionModel;
28493 tejbeer 9
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
10
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
11
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
12
 
13
@Service
14
public interface WarehouseService {
15
 
32194 tejbeer 16
    public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;
28493 tejbeer 17
 
32194 tejbeer 18
    public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);
30826 amit.gupta 19
 
32194 tejbeer 20
    public List<ItemDescriptionModel> getAllPartnerItemStringDescription(int vendorId);
28493 tejbeer 21
}