17 lines
511 B
C#
17 lines
511 B
C#
namespace TaxBaik.Application;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using TaxBaik.Application.Services;
|
|
|
|
public static class DependencyInjection
|
|
{
|
|
public static IServiceCollection AddApplication(this IServiceCollection services)
|
|
{
|
|
services.AddScoped<BlogService>();
|
|
services.AddScoped<InquiryService>();
|
|
services.AddScoped<IInquiryNotificationService, NoopInquiryNotificationService>();
|
|
services.AddScoped<CategoryService>();
|
|
return services;
|
|
}
|
|
}
|