Data.ProductsRepository.Delete C# (CSharp) Method

Delete() public method

public Delete ( int id ) : void
id int
return void
        public void Delete(int id)
        {
            httpHelpers.HttpInvoke(SupportedHttpMethods.DELETE, string.Format("{0}/{1}{2}", restService, apiPath, id));
        }