add migration for LeaveRequest
This commit is contained in:
parent
d6e43a44bb
commit
5c51bf1f99
9 changed files with 2156 additions and 6 deletions
|
|
@ -1,4 +1,6 @@
|
|||
using BMA.EHR.Application.Common.Interfaces;
|
||||
using BMA.EHR.Domain.Models.Leave.Commons;
|
||||
using BMA.EHR.Domain.Models.Leave.Requests;
|
||||
using BMA.EHR.Domain.Models.Leave.TimeAttendants;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
|
|
@ -18,6 +20,15 @@ namespace BMA.EHR.Infrastructure.Persistence
|
|||
|
||||
public DbSet<AdditionalCheckRequest> AdditionalCheckRequests { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
#region " Leave System "
|
||||
|
||||
public DbSet<LeaveType> LeaveTypes { get; set; }
|
||||
|
||||
public DbSet<LeaveRequest> LeaveRequests { get; set; }
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue