public static IServiceCollection AddApplication(this IServiceCollection services)
{
services.AddScoped<IAuthenticationService, AuthenticationService>();
services.AddScoped<ITextService, TextService>();
return services;
}
public static IServiceCollection AddApplication(this IServiceCollection services)
{
services.AddScoped<IAuthenticationService, AuthenticationService>();
services.AddScoped<ITextService, TextService>();
return services;
}