Altairis.Fakturoid.Client.FakturoidSubjectsProxy.Delete C# (CSharp) Method

Delete() public method

Deletes subject with specified id.
id;Value must be greater than zero.
public Delete ( int id ) : void
id int The contact id.
return void
        public void Delete(int id) {
            if (id < 1) throw new ArgumentOutOfRangeException(nameof(id), "Value must be greater than zero.");

            base.DeleteSingleEntity(string.Format("subjects/{0}.json", id));
        }