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

📄 iproductcommon.cs

📁 动易SiteFactory&#8482 网上商店系统1.0源代码
💻 CS
字号:
namespace PowerEasy.IDal.Shop
{
    using PowerEasy.Enumerations;
    using PowerEasy.Model.Shop;
    using System;
    using System.Collections.Generic;

    public interface IProductCommon
    {
        bool Add(ProductInfo info, string tableName);
        bool AddBuyTimes(int productId, string tableName);
        bool AddOrderNum(int id, int quantity);
        bool AddOrderNum(int productId, string tableName, int quantity);
        bool AddStocks(int productId, int quantity);
        bool DeleteById(int id, string tableName);
        bool ExistsPresent(int presentId);
        string GetGeneralIdList(string nodeIdList, string modelIdList);
        IList<ProductInfo> GetProductCommonListByCharacter(ProductCharacter productCharacter);
        ProductInfo GetProductInfoByType(int productId, string tableName, ProductType productType);
        string GetProductName(int id);
        IList<string> GetUnitList();
        bool IsExistSameProductNum(string productNum);
        bool Update(ProductInfo info, string tableName);
    }
}

⌨️ 快捷键说明

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