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

Delete() public method

public Delete ( int educationId ) : bool
educationId int
return bool
        public bool Delete(int educationId)
        {
            using (var svc = new ServiceProxyHelper<IEducationService>("EducationService"))
            {
                return svc.Proxy.Delete(educationId);
            }
        }