Merge branch 'develop' into working

This commit is contained in:
Suphonchai Phoonsawat 2024-06-20 13:39:52 +07:00
commit 18aa77b3ad
15 changed files with 20164 additions and 1615 deletions

View file

@ -43,5 +43,7 @@ namespace BMA.EHR.Application.Responses
public string? posExecutiveId { get; set; }
public string? posExecutiveName { get; set; }
public string? posNo { get; set; }
public string? organization { get; set; }
public double? salary { get; set; }
}
}

View file

@ -16,5 +16,13 @@
public string lastName { get; set; } = string.Empty;
public string? profileId { get; set; } = string.Empty;
// public Guid? commandId { get; set; } = Guid.Empty;
public DateTime? birthDate { get; set; }
public string? organization { get; set; }
public string? positionName { get; set; }
public string? positionLevel { get; set; }
public string? positionType { get; set; }
public string? positionNumber { get; set; }
}
}

View file

@ -2,10 +2,10 @@
{
public class CommandType23Response
{
public string? FullName { get; set; } = string.Empty;
public string? Positionname { get; set; } = string.Empty;
public string? Positionno { get; set; } = string.Empty;
public string? Organizationname { get; set; } = string.Empty;
public string? Salary { get; set; } = string.Empty;
public string? fullName { get; set; } = string.Empty;
public string? positionname { get; set; } = string.Empty;
public string? positionno { get; set; } = string.Empty;
public string? organizationname { get; set; } = string.Empty;
public string? salary { get; set; } = string.Empty;
}
}