Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28493 tejbeer 1
package com.spice.profitmandi.service.warehouse;
2
 
3
import org.springframework.stereotype.Service;
4
 
5
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
6
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
7
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
8
 
9
@Service
10
public interface WarehouseService {
11
 
12
	public void createVendorWarehouse( WarehouseType warehouseType, InventoryType inventoryType,String label,int warehouseId, WarehouseAddressMaster wam,int vendorId);
13
 
14
}