View as "text/plain" | Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.Interface; import java.util.List; public interface ItemType { public List<Integer> getCatalogId(); public List<String> getBrands(); }
package com.spice.profitmandi.dao.Interface;
import java.util.List;
public interface ItemType {
public List<Integer> getCatalogId();
public List<String> getBrands();
}