Exemple #1
0
 /// <summary>
 /// Update an existing income from overseas subject to tax remission
 /// </summary>
 /// <remarks>
 /// Update an existing income from overseas subject to tax remission
 /// </remarks>
 public void UpdateAnExistingIncomeFromOverseasSubjectToTaxRemission(int businessId, int employeeId, int id, SgIncomeFromOverseasSubjectToTaxRemissionModel request)
 {
     ApiRequest($"/business/{businessId}/employee/{employeeId}/incomefromoverseassubjecttotaxremission/{id}", request, Method.PUT);
 }
Exemple #2
0
 /// <summary>
 /// Create Income from overseas subject to tax remission
 /// </summary>
 /// <remarks>
 /// Creates a new income from overseas subject to tax remissions
 /// </remarks>
 public void CreateIncomeFromOverseasSubjectToTaxRemission(int businessId, int employeeId, SgIncomeFromOverseasSubjectToTaxRemissionModel model)
 {
     ApiRequest($"/business/{businessId}/employee/{employeeId}/incomefromoverseassubjecttotaxremission", model, Method.POST);
 }
Exemple #3
0
 /// <summary>
 /// Create Income from overseas subject to tax remission
 /// </summary>
 /// <remarks>
 /// Creates a new income from overseas subject to tax remissions
 /// </remarks>
 public Task CreateIncomeFromOverseasSubjectToTaxRemissionAsync(int businessId, int employeeId, SgIncomeFromOverseasSubjectToTaxRemissionModel model, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync($"/business/{businessId}/employee/{employeeId}/incomefromoverseassubjecttotaxremission", model, Method.POST, cancellationToken));
 }
Exemple #4
0
 /// <summary>
 /// Update an existing income from overseas subject to tax remission
 /// </summary>
 /// <remarks>
 /// Update an existing income from overseas subject to tax remission
 /// </remarks>
 public Task UpdateAnExistingIncomeFromOverseasSubjectToTaxRemissionAsync(int businessId, int employeeId, int id, SgIncomeFromOverseasSubjectToTaxRemissionModel request, CancellationToken cancellationToken = default)
 {
     return(ApiRequestAsync($"/business/{businessId}/employee/{employeeId}/incomefromoverseassubjecttotaxremission/{id}", request, Method.PUT, cancellationToken));
 }