Blog.Services.Helpers.Wcf.CommunityResource.GetCreatedByUser C# (CSharp) Method

GetCreatedByUser() public method

public GetCreatedByUser ( int userId ) : List
userId int
return List
        public List<Community> GetCreatedByUser(int userId)
        {
            using (var svc = new ServiceProxyHelper<ICommunityService>("CommunityService"))
            {
                return svc.Proxy.GetCreatedByUser(userId);
            }
        }