14 lines
367 B
C#
14 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;
|
|
}
|
|
}
|
|
}
|