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

Delete() public method

public Delete ( int communityId ) : bool
communityId int
return bool
        public bool Delete(int communityId)
        {
            using (var svc = new ServiceProxyHelper<ICommunityService>("CommunityService"))
            {
                return svc.Proxy.Delete(communityId);
            }
        }
    }