Add Deployment channel

This commit is contained in:
Suphonchai Phoonsawat 2023-06-28 10:32:16 +07:00
parent 68dab7a727
commit 00f795483a
5 changed files with 9453 additions and 104 deletions

View file

@ -1,4 +1,5 @@
using BMA.EHR.Application.Common.Interfaces;
using BMA.EHR.Domain.Models.Commands;
using BMA.EHR.Domain.Models.Documents;
using BMA.EHR.Domain.Models.HR;
using BMA.EHR.Domain.Models.MetaData;
@ -236,6 +237,12 @@ namespace BMA.EHR.Infrastructure.Persistence
#endregion
#region " Command "
public DbSet<DeploymentChannel> DeploymentChannels { get; set; }
#endregion
public ApplicationDBContext(DbContextOptions<ApplicationDBContext> options) : base(options)
{
}