api เกษียณ

This commit is contained in:
Kittapath 2023-07-22 22:14:50 +07:00
parent 25274562c8
commit 6d655f3f3b
29 changed files with 27484 additions and 46 deletions

View file

@ -0,0 +1,10 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class ProfileRequest
{
public Guid ProfileId { get; set; }
}
}

View file

@ -0,0 +1,11 @@
using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Retirement.Service.Requests
{
public class ProfileRetireRequest
{
public Guid RetireProfileId { get; set; }
public string Reason { get; set; }
}
}