⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 longhuafacade.java

📁 一个简易的网上购物系统。具有普遍的购物功能。还有一个小型的论坛
💻 JAVA
字号:
package com.longHua.domain.logic;

import java.util.List;

import com.longHua.domain.ClientEstimate;
import com.longHua.domain.Item;
import com.longHua.domain.Product;
import com.longHua.domain.ProductCategory;
import com.longHua.domain.ProductPayType;
import com.longHua.domain.ProductSendType;
import com.longHua.domain.UserReg;

public interface longHuaFacade {
	void saveUser(UserReg user);
    void delete(int id);
    UserReg getUser(int id);
    List<UserReg> getUsers();
    List<UserReg> checkRegName(String regName);
    List<UserReg> checkRegEmail(String regEmail);
    
    ProductCategory getOneProductCategory(int ID);
	void addProductCategory(ProductCategory productCategory);
	void deleteProductCategory(int ID);
	List<ProductCategory> checkThisProductCategory(String catName);
	
	void addProductPayType(ProductPayType productPayType);
    void deleteProductPayType(int ID);
    List<ProductPayType> showAllProductPayType();
    ProductPayType getOneProductPayType(int ID);
    List<ProductPayType> checkThisProductPayType(String typeName);
    
    void addProductSendType(ProductSendType productSendType);
    void deleteProductSendType(int ID);
    List<ProductSendType> showAllProductSendType();
    ProductSendType getOneProductSendType(int ID);
    List<ProductSendType> checkThisProductSendType(String typeName);
    
    void addProduct(Product product);
    void deleteProduct(int ID);
    List<Product> showAllProduct();
    Product getOneProduct(int ID);
    
    void addClientEstimate(ClientEstimate clientEstimate);
    void deleteClientEstimate(int ID);
    List<ClientEstimate> showAllClientEstimate();
    ClientEstimate getOneClientEstimate(int ID);
    
    Item getThisItem(int productId);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -