public PayScheduleModel Create(int businessId, PayScheduleModel model)
 {
     return(ApiRequest <PayScheduleModel, PayScheduleModel>($"/business/{businessId}/payschedule", model, Method.POST));
 }
 public PayScheduleModel Update(int businessId, PayScheduleModel model)
 {
     return(ApiRequest <PayScheduleModel, PayScheduleModel>($"/business/{businessId}/payschedule/{model.Id}", model, Method.PUT));
 }
 public PayScheduleModel Update(int businessId, PayScheduleModel model)
 {
     return(ApiRequest <PayScheduleModel, PayScheduleModel>("/business/" + businessId + "/payschedule/" + model.Id, model, Method.PUT));
 }