Rev 30826 | Go to most recent revision | Details | Last modification | View Log | RSS feed
package com.spice.profitmandi.service.warehouse;
import org.springframework.stereotype.Service;
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
@Service
public interface WarehouseService {
public void createVendorWarehouse( WarehouseType warehouseType, InventoryType inventoryType,String label,int warehouseId, WarehouseAddressMaster wam,int vendorId);
}