15 lines
389 B
C#
15 lines
389 B
C#
using BMA.EHR.Application.Repositories;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace BMA.EHR.Application
|
|
{
|
|
public static class ApplicationServicesRegistration
|
|
{
|
|
public static IServiceCollection AddApplication(this IServiceCollection services)
|
|
{
|
|
services.AddTransient<PrefixRepository>();
|
|
|
|
return services;
|
|
}
|
|
}
|
|
}
|