Subversion Repositories SmartDukaan

Rev

Rev 28493 | Rev 32194 | 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
 
30826 amit.gupta 3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
28493 tejbeer 4
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
5
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
6
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
30826 amit.gupta 7
import org.springframework.stereotype.Service;
28493 tejbeer 8
 
30826 amit.gupta 9
import java.util.List;
10
 
28493 tejbeer 11
@Service
12
public interface WarehouseService {
13
 
30826 amit.gupta 14
	public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;
28493 tejbeer 15
 
30826 amit.gupta 16
	public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);
17
 
28493 tejbeer 18
}