Blog.Services.Implementation.UsersService.GetUsersByCommunity C# (CSharp) Метод

GetUsersByCommunity() публичный Метод

public GetUsersByCommunity ( int communityId, int threshold = 5, int skip = 10 ) : List
communityId int
threshold int
skip int
Результат List
        public List<User> GetUsersByCommunity(int communityId, int threshold = 5, int skip = 10)
        {
            return _usersLogic.GetUsersByCommunity(communityId, threshold, skip);
        }