Example #1
0
 public void Update(int businessId, EmployingEntityModel model)
 {
     ApiRequest <EmployingEntityModel, EmployingEntityModel>("/business/" + businessId + "/employingentity/" + model.Id, model, Method.PUT);
 }
Example #2
0
 public EmployingEntityModel Create(int businessId, EmployingEntityModel model)
 {
     return(ApiRequest <EmployingEntityModel, EmployingEntityModel>("/business/" + businessId + "/employingentity", model, Method.POST));
 }