noti หนังสือเวียน

This commit is contained in:
Kittapath 2023-09-13 21:51:57 +07:00
parent 390eb7296b
commit d96ad94299
12 changed files with 16809 additions and 7 deletions

View file

@ -1,8 +1,11 @@
using BMA.EHR.Application.Common.Interfaces;
using System.Reflection.Metadata;
using BMA.EHR.Application.Common.Interfaces;
using BMA.EHR.Domain.Extensions;
using BMA.EHR.Domain.Models.Organizations;
using BMA.EHR.Domain.Models.Retirement;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Application.Repositories.Reports
@ -18,11 +21,11 @@ namespace BMA.EHR.Application.Repositories.Reports
#region " Constructor and Destructor "
public RetireReportRepository(IApplicationDBContext dbContext, IWebHostEnvironment hostEnvironment)
public RetireReportRepository(IApplicationDBContext dbContext,
IWebHostEnvironment hostEnvironment)
{
_dbContext = dbContext;
_hostingEnvironment = hostEnvironment;
}
#endregion
@ -239,6 +242,18 @@ namespace BMA.EHR.Application.Repositories.Reports
}
#endregion
#region
public async Task UploadFileRetirementDeceasedAsync(Guid id, Domain.Models.Documents.Document file)
{
var data = await _dbContext.Set<RetirementDeceased>().AsQueryable()
.Include(x => x.Profile)
.Where(x => x.Id == id)
.FirstOrDefaultAsync();
if (data != null)
data.Document = file;
}
#endregion
#endregion
}
}