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

📄 iuserfriend.cs

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

    public interface IUserFriend
    {
        bool Add(UserFriendInfo userFriendInfo);
        bool CheckBlackFriend(string friendName, string userName);
        bool Delete(string friendId);
        bool Delete(string userName, int friendGroupId);
        bool Exists(string friendName, string userName);
        int GetFriendCount(int friendGroupId, string userName);
        IList<string> GetFriendNameList(string userName);
        DataTable GetList(int startRowIndexId, int maxNumberRows, string userName, int groupId);
        int GetTotalOfFriend();
        bool MoveByGroupId(string friendId, int groupId);
    }
}

⌨️ 快捷键说明

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