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

📄 iorder.cs

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

    public interface IOrder
    {
        bool Add(OrderInfo orderInfo);
        bool CancelConfirm(int orderId);
        int Confirm(int orderId);
        string Delete(string orderId);
        bool DoDownload(int orderId, bool enableDownload);
        IList<UserOrderCommonInfo> GetCardList(string userName);
        IList<UserOrderCommonInfo> GetDownList(string userName);
        UserOrderCommonInfo GetDownloadInfo(string userName, int orderItemId);
        string GetLastFunctionary();
        IList<OrderInfo> GetList(int startRowIndexId, int maxNumberRows, string searchType, string field, string keyword, string action);
        IDictionary<int, string> GetListByUserName(string userName);
        int GetMaxId();
        OrderInfo GetMyOrderById(int orderId, string userName);
        OrderInfo GetOrderById(int orderId);
        OrderInfo GetOrderByOrderNum(string orderNum);
        ArrayList GetTotalofMoneyAndReceipt();
        ArrayList GetTotalofMoneyAndReceiptByAgentName(string agentName);
        ArrayList GetTotalofMoneyAndReceiptByUserName(string userName);
        int GetTotalOfOrder();
        ArrayList GetTotalofthisMoneyAndReceipt(string field);
        bool GoPause(int orderId);
        bool GoRubbish(int orderId);
        bool Recieve(int orderId);
        bool Transfer(int orderId, int clientId, string userName);
        bool Update(OrderInfo orderInfo);
        bool UpdateDeliverStatus(int orderId, DeliverStatus statusValue);
        bool UserPayment(int orderId, decimal moneyReceipt, OrderStatus status);
    }
}

⌨️ 快捷键说明

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