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