This commit is contained in:
Suphonchai Phoonsawat 2026-05-12 16:32:46 +07:00
parent 4dc8849b31
commit cc251f7129
146 changed files with 2465 additions and 4785 deletions

View file

@ -1,7 +1,7 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Recruit.Service.Models.Documents
namespace BMA.EHR.Recruit.Models.Documents
{
public class Document
{

View file

@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text.Json.Serialization;
namespace BMA.EHR.Recruit.Service.Models
namespace BMA.EHR.Recruit.Models
{
public class EntityBase
{

View file

@ -1,6 +1,6 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
namespace BMA.EHR.Profile.Service.Models.HR
{

View file

@ -1,6 +1,6 @@

using System.ComponentModel.DataAnnotations;
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Profile.Service.Models.HR

View file

@ -1,5 +1,5 @@

using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
namespace BMA.EHR.Profile.Service.Models.HR
{

View file

@ -1,5 +1,5 @@

using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using System.ComponentModel.DataAnnotations;
using Microsoft.EntityFrameworkCore;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using Org.BouncyCastle.Asn1.X509;
using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using Org.BouncyCastle.Asn1.X509;
using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using Org.BouncyCastle.Asn1.X509;
using System.ComponentModel.DataAnnotations.Schema;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.MetaData.Service.Models;

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;

View file

@ -1,8 +1,8 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.MetaData.Service.Models;
using BMA.EHR.Recruit.Service.Models.Documents;
using BMA.EHR.Recruit.Models.Documents;
namespace BMA.EHR.Domain.Models.Placement
{

View file

@ -1,4 +1,4 @@
using BMA.EHR.Recruit.Service.Models;
using BMA.EHR.Recruit.Models;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;

View file

@ -1,7 +1,7 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class Recruit : EntityBase
{

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitAddress : EntityBase
{

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitCertificate : EntityBase
{

View file

@ -1,6 +1,6 @@
using BMA.EHR.Recruit.Service.Models.Documents;
using BMA.EHR.Recruit.Models.Documents;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitDocument : EntityBase
{

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitEducation : EntityBase
{

View file

@ -1,9 +1,9 @@
using BMA.EHR.Recruit.Service.Models.Documents;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Recruit.Models.Documents;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitImport : EntityBase
{

View file

@ -1,8 +1,8 @@
using BMA.EHR.Recruit.Service.Models.Documents;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.Recruit.Models.Documents;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitImportDocument : EntityBase
{

View file

@ -2,7 +2,7 @@ using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitImportHistory : EntityBase
{

View file

@ -1,8 +1,8 @@
using BMA.EHR.Recruit.Service.Models.Documents;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.Recruit.Models.Documents;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitImportImage: EntityBase
{

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitOccupation : EntityBase
{

View file

@ -1,6 +1,6 @@
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitPayment : EntityBase
{

View file

@ -1,7 +1,7 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class RecruitScore : EntityBase
{

View file

@ -1,7 +1,7 @@
using BMA.EHR.Recruit.Service.Models.Documents;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Recruit.Models.Documents;
namespace BMA.EHR.Recruit.Service.Models.Recruits
namespace BMA.EHR.Recruit.Models.Recruits
{
public class ScoreImport : EntityBase
{