เพิ่ม api ผลตรวจเลือด

This commit is contained in:
Kittapath 2023-08-09 23:34:25 +07:00
parent 060765d373
commit 4a17aef039
18 changed files with 27329 additions and 562 deletions

View file

@ -0,0 +1,17 @@
using Microsoft.AspNetCore.Http;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PlacementTransferEditRequest
{
public string Organization { get; set; }
public string Reason { get; set; }
public Guid? OrganizationOld { get; set; }
public DateTime? Date { get; set; }
public Guid? PositionTypeOld { get; set; }
public Guid? PositionLevelOld { get; set; }
public Guid? PosNoOld { get; set; }
public double? AmountOld { get; set; }
}
}

View file

@ -7,6 +7,7 @@ namespace BMA.EHR.Placement.Service.Requests
{
public string Organization { get; set; }
public string Reason { get; set; }
public DateTime? Date { get; set; }
public List<FormFile>? File { get; set; }
}
}