Inheritance: AbstractService
 public string DeleteProject(int projectID)
 {
     var request = new DeleteService(HarvestConnection, "projects/{0}", projectID);
     return PerformRequest(request);
 }
 public string DeleteClient(int clientID)
 {
     var request = new DeleteService(HarvestConnection, "clients/{0}", clientID);
     return PerformRequest(request);
 }