api holiday
This commit is contained in:
parent
692acf831a
commit
b1b8d96e57
14 changed files with 1217 additions and 65 deletions
11
BMA.EHR.MetaData.Service/Response/DashboardResponseItem.cs
Normal file
11
BMA.EHR.MetaData.Service/Response/DashboardResponseItem.cs
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
namespace BMA.EHR.MetaData.Service.Response
|
||||
{
|
||||
public class DashboardResponseItem
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public int? Count { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
namespace BMA.EHR.MetaData.Service.Response
|
||||
{
|
||||
public class GetOrganizationTypeResponse
|
||||
{
|
||||
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public string Name { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
13
BMA.EHR.MetaData.Service/Response/ResponseObject.cs
Normal file
13
BMA.EHR.MetaData.Service/Response/ResponseObject.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using System.Net;
|
||||
|
||||
namespace BMA.EHR.MetaData.Service.Response
|
||||
{
|
||||
public class ResponseObject
|
||||
{
|
||||
public int Status { get; set; }
|
||||
|
||||
public string? Message { get; set; }
|
||||
|
||||
public object? Result { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
namespace BMA.EHR.MetaData.Service.Response
|
||||
{
|
||||
public class SummaryHolidayByMonthResponseItem
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
|
||||
public int? Count { get; set; }
|
||||
|
||||
public string? Month { get; set; }
|
||||
|
||||
public string? MonthFull { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue