Merge branch 'develop' into work

This commit is contained in:
Kittapath 2023-08-04 16:18:18 +07:00
commit c56e3b06b9
12 changed files with 849 additions and 29 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;
}
}