เพิ่ม service ระบบออกคำสั่ง (not complete)

This commit is contained in:
Suphonchai Phoonsawat 2023-07-13 15:03:29 +07:00
parent 90b4705234
commit b99d7e759b
15 changed files with 23495 additions and 115 deletions

View file

@ -0,0 +1,27 @@
using BMA.EHR.Application.Common.Interfaces;
using BMA.EHR.Domain.Models.Commands;
using Microsoft.AspNetCore.Http;
namespace BMA.EHR.Application.Repositories.Commands
{
public class PlacementCommandRepository : GenericRepository<Guid, PlacementCommand>
{
#region " Fields "
private readonly IApplicationDBContext _dbContext;
private readonly IHttpContextAccessor _httpContextAccessor;
#endregion
#region " Constructor and Destuctor "
public PlacementCommandRepository(IApplicationDBContext dbContext,
IHttpContextAccessor httpContextAccessor) : base(dbContext, httpContextAccessor)
{
_dbContext = dbContext;
_httpContextAccessor = httpContextAccessor;
}
#endregion
}
}