Subversion Repositories SmartDukaan

Rev

Rev 28493 | Rev 32194 | 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 com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.dao.entity.transaction.WarehouseAddressMaster;
import com.spice.profitmandi.dao.enumuration.inventory.InventoryType;
import com.spice.profitmandi.dao.enumuration.inventory.WarehouseType;
import org.springframework.stereotype.Service;

import java.util.List;

@Service
public interface WarehouseService {

        public List<Integer> getAuthWarehouses(String email) throws ProfitMandiBusinessException;

        public void createVendorWarehouse(WarehouseType warehouseType, InventoryType inventoryType, String label, int warehouseId, WarehouseAddressMaster wam, int vendorId);

}