📄 iusergroups.cs
字号:
namespace PowerEasy.IDal.UserManage
{
using PowerEasy.Enumerations;
using PowerEasy.Model.UserManage;
using System;
using System.Collections.Generic;
public interface IUserGroups
{
bool Add(UserGroupsInfo userGroupsInfo);
bool Delete(int id);
int GetMaxId();
int GetNumberUserGroups();
UserGroupsInfo GetUserGroupById(int id);
IList<UserGroupsInfo> GetUserGroupList(GroupType groupType);
IList<UserGroupsInfo> GetUserGroupList(int startRowIndexId, int maxNumberRows);
int GetUserInGroupNumber(int groupId);
bool Update(UserGroupsInfo userGroupsInfo);
bool UserGroupIsExist(string groupName);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -