api รายงานประกาศเกษียณลูกจ้างประจำ

This commit is contained in:
Harid Promsri (Bright) 2023-08-22 17:24:21 +07:00
parent 9abb9c5422
commit 81b2ad210b
5 changed files with 211 additions and 29 deletions

View file

@ -1,6 +1,7 @@
using BMA.EHR.Application.Repositories;
using BMA.EHR.Application.Repositories.Commands;
using BMA.EHR.Application.Repositories.MessageQueue;
using BMA.EHR.Application.Repositories.Reports;
using Microsoft.Extensions.DependencyInjection;
namespace BMA.EHR.Application
@ -23,6 +24,7 @@ namespace BMA.EHR.Application
services.AddTransient<InboxRepository>();
services.AddTransient<NotificationRepository>();
services.AddTransient<RetirementRepository>();
services.AddTransient<RetireReportRepository>();
return services;
}