fix : เปลี่ยนชื่อ Folder + Project เอาคำว่า Service ออก เพื่อให้สามารถ run บน macOS Sonoma ได้ (ไม่เปลี่ยนจะไม่สามารถ run ได้ เนื่องจาก macOS จะมองว่าเป็น application ของ mac)
This commit is contained in:
parent
9d90c98800
commit
59340500b7
42 changed files with 21614 additions and 3532 deletions
15
BMA.EHR.Insignia/Requests/AddUserRequestInsigniaRequest.cs
Normal file
15
BMA.EHR.Insignia/Requests/AddUserRequestInsigniaRequest.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class AddUserRequestInsigniaRequest
|
||||
{
|
||||
public Guid ProfileId { get; set; }
|
||||
public Guid insigniaId { get; set; }
|
||||
public Guid insigniaPeriodId { get; set; }
|
||||
public string? Reason { get; set; }
|
||||
|
||||
public Guid OcId { get; set; }
|
||||
}
|
||||
}
|
||||
12
BMA.EHR.Insignia/Requests/ExportFileInsigniaRequest.cs
Normal file
12
BMA.EHR.Insignia/Requests/ExportFileInsigniaRequest.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class ExportFileInsigniaRequest
|
||||
{
|
||||
public string? ProfileType { get; set; }
|
||||
public Guid? InsigniaId { get; set; }
|
||||
// public Guid? OrgId { get; set; }
|
||||
}
|
||||
}
|
||||
10
BMA.EHR.Insignia/Requests/ImportFileRequest.cs
Normal file
10
BMA.EHR.Insignia/Requests/ImportFileRequest.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class ImportFileRequest
|
||||
{
|
||||
public List<FormFile>? File { get; set; }
|
||||
}
|
||||
}
|
||||
14
BMA.EHR.Insignia/Requests/ImportInvoiceRequest.cs
Normal file
14
BMA.EHR.Insignia/Requests/ImportInvoiceRequest.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class ImportInvoiceRequest
|
||||
{
|
||||
public string? CitizanId { get; set; }
|
||||
public string? Number { get; set; }
|
||||
public DateTime? DatePayment { get; set; }
|
||||
public string? TypePayment { get; set; }
|
||||
public string? Address { get; set; }
|
||||
}
|
||||
}
|
||||
23
BMA.EHR.Insignia/Requests/ImportReceiveRequest.cs
Normal file
23
BMA.EHR.Insignia/Requests/ImportReceiveRequest.cs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class ImportReceiveRequest
|
||||
{
|
||||
public string? Number { get; set; }
|
||||
public string? RequestInsignia { get; set; }
|
||||
public string? CitizanId { get; set; }
|
||||
public string? Prefix { get; set; }
|
||||
public string? FullName { get; set; }
|
||||
public string? Position { get; set; }
|
||||
public DateTime? DateReceive { get; set; }
|
||||
public string? OrgSend { get; set; }
|
||||
public string? OrgReceive { get; set; }
|
||||
public DateTime? Date { get; set; }
|
||||
public string? VolumeNo { get; set; }
|
||||
public string? Section { get; set; }
|
||||
public string? Page { get; set; }
|
||||
public string? No { get; set; }
|
||||
}
|
||||
}
|
||||
12
BMA.EHR.Insignia/Requests/InsigniaNoteDocRequest.cs
Normal file
12
BMA.EHR.Insignia/Requests/InsigniaNoteDocRequest.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class InsigniaNoteDocRequest
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
public string? Reason { get; set; }
|
||||
public List<FormFile>? File { get; set; }
|
||||
}
|
||||
}
|
||||
10
BMA.EHR.Insignia/Requests/InsigniaNoteNameRequest.cs
Normal file
10
BMA.EHR.Insignia/Requests/InsigniaNoteNameRequest.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class InsigniaNoteNameRequest
|
||||
{
|
||||
public string? Name { get; set; }
|
||||
}
|
||||
}
|
||||
25
BMA.EHR.Insignia/Requests/InsigniaNoteRequest.cs
Normal file
25
BMA.EHR.Insignia/Requests/InsigniaNoteRequest.cs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class InsigniaNoteRequest
|
||||
{
|
||||
public string CitizanId { get; set; }
|
||||
public Guid? InsigniaId { get; set; }
|
||||
|
||||
public string? Issue { get; set; }
|
||||
public string? Number { get; set; }
|
||||
public DateTime? DateReceive { get; set; }
|
||||
public DateTime? Date { get; set; }
|
||||
public string? VolumeNo { get; set; }
|
||||
public string? Section { get; set; }
|
||||
public string? Page { get; set; }
|
||||
public string? No { get; set; }
|
||||
public DateTime? DatePayment { get; set; }
|
||||
public string? TypePayment { get; set; }
|
||||
public string? Address { get; set; }
|
||||
public string? OrganizationOrganizationSend { get; set; }
|
||||
public string? OrganizationOrganizationReceive { get; set; }
|
||||
}
|
||||
}
|
||||
12
BMA.EHR.Insignia/Requests/InsigniaNoteSearchRequest.cs
Normal file
12
BMA.EHR.Insignia/Requests/InsigniaNoteSearchRequest.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class InsigniaNoteSearchRequest
|
||||
{
|
||||
public Guid InsigniaTypeId { get; set; }
|
||||
public Guid InsigniaNoteId { get; set; }
|
||||
public Guid? InsigniaId { get; set; }
|
||||
}
|
||||
}
|
||||
12
BMA.EHR.Insignia/Requests/InsigniaReturnRequest.cs
Normal file
12
BMA.EHR.Insignia/Requests/InsigniaReturnRequest.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class InsigniaNoteReturnRequest
|
||||
{
|
||||
public List<FormFile>? File { get; set; }
|
||||
public DateTime? Date { get; set; }
|
||||
public Guid OrgId { get; set; }
|
||||
}
|
||||
}
|
||||
10
BMA.EHR.Insignia/Requests/RetirementReasonRequest.cs
Normal file
10
BMA.EHR.Insignia/Requests/RetirementReasonRequest.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class InsigniaReasonRequest
|
||||
{
|
||||
public string Reason { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
using BMA.EHR.Domain.Models.MetaData;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace BMA.EHR.Insignia.Service.Requests
|
||||
{
|
||||
public class UpdateUserRequestInsigniaRequest
|
||||
{
|
||||
public Guid insigniaId { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue