public List <Supplier> findSupplierByCategory(string cate)
    {
        List <Supplier> slist = StoreSupplierDAO.findSupplierByCategory(cate);

        if (slist == null)
        {
            throw new SSexception("supplier not found for this category");
        }
        else
        {
            return(slist);
        }
    }