15 lines
367 B
C#
15 lines
367 B
C#
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.ReportGenerator
|
|||
|
|
{
|
|||
|
|
public static class ReportGeneratorServicesRegistration
|
|||
|
|
{
|
|||
|
|
public static IServiceCollection AddReportGenerator(this IServiceCollection services)
|
|||
|
|
{
|
|||
|
|
services.AddTransient<GenericReportGenerator>();
|
|||
|
|
|
|||
|
|
return services;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|