17 lines
394 B
C#
17 lines
394 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>();
|
|||
|
|
services.AddTransient<BloodGroupRepository>();
|
|||
|
|
|
|||
|
|
return services;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|