Subversion Repositories SmartDukaan

Rev

Rev 28493 | Rev 32194 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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