Add new API

Update Salary
Swap Sequence
This commit is contained in:
Suphonchai Phoonsawat 2023-08-04 14:30:10 +07:00
parent 680bfba81e
commit a4e8b50d45
3 changed files with 196 additions and 0 deletions

View file

@ -0,0 +1,11 @@
namespace BMA.EHR.Application.Requests.Commands
{
public class UpdatePlacementSalaryRequest
{
public double SalaryAmount { get; set; } = 0;
public double PositionSalaryAmount { get; set; } = 0;
public double MonthSalaryAmount { get; set; } = 0;
}
}