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

Delete() public method

public Delete ( int addressId ) : bool
addressId int
return bool
        public bool Delete(int addressId)
        {
            using (var svc = new ServiceProxyHelper<IAddressService>("AddressService"))
            {
                return svc.Proxy.Delete(addressId);
            }
        }