Rev 30826 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | 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;@Servicepublic interface WarehouseService {public void createVendorWarehouse( WarehouseType warehouseType, InventoryType inventoryType,String label,int warehouseId, WarehouseAddressMaster wam,int vendorId);}