โอนคนสรรหาไปบรรจุ

This commit is contained in:
Kittapath 2023-07-26 18:42:42 +07:00
parent 49d6f1eb41
commit 1a832061a9
49 changed files with 1725 additions and 765 deletions

View file

@ -1,5 +1,6 @@
using Microsoft.EntityFrameworkCore;
using BMA.EHR.MetaData.Service.Models;
using BMA.EHR.Domain.Models.Placement;
namespace BMA.EHR.Recurit.Service.Data
{
public class MetadataDbContext : DbContext
@ -33,6 +34,23 @@ namespace BMA.EHR.Recurit.Service.Data
}
public DbSet<BMA.EHR.Profile.Service.Models.HR.ProfileOrganization> ProfileOrganizations { get; set; }
public DbSet<BMA.EHR.Profile.Service.Models.HR.OrganizationEntity> Organizations { get; set; }
public DbSet<Placement> Placements { get; set; }
public DbSet<PlacementCertificate> PlacementCertificates { get; set; }
public DbSet<PlacementEducation> PlacementEducations { get; set; }
public DbSet<PlacementIsProperty> PlacementIsProperties { get; set; }
public DbSet<PlacementProfile> PlacementProfiles { get; set; }
public DbSet<PlacementType> PlacementTypes { get; set; }
public DbSet<BloodGroup> BloodGroups { get; set; }
public DbSet<District> Districts { get; set; }
public DbSet<EducationLevel> EducationLevels { get; set; }
public DbSet<Gender> Genders { get; set; }
public DbSet<PositionPath> PositionPaths { get; set; }
public DbSet<Prefix> Prefixes { get; set; }
public DbSet<Province> Provinces { get; set; }
public DbSet<Relationship> Relationships { get; set; }
public DbSet<Religion> Religions { get; set; }
public DbSet<SubDistrict> SubDistricts { get; set; }
}
}