0e98e68532
DB: - V006__CreateClients.sql: clients 테이블 (name, company_name, phone, email, service_type, tax_type, status, source, memo) Domain: - Client 엔티티 - IClientRepository (GetPagedAsync 이름/연락처/회사명 검색 + 상태 필터) Infrastructure: - ClientRepository: ILIKE 검색, 페이징, CRUD Application: - ClientService: ServiceTypes/TaxTypes/Sources 상수 정의 - CreateClientDto Admin UI: - ClientList.razor: 검색바 + 상태 필터 + 페이징 테이블 - ClientEdit.razor: 기본정보/세무정보/관리정보 섹션 폼 - MainLayout: 고객 관리 NavGroup 추가, 홈페이지 메뉴 그룹화 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
769 B
C#
22 lines
769 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<AdminDashboardService>();
|
|
services.AddScoped<IInquiryNotificationService, NoopInquiryNotificationService>();
|
|
services.AddScoped<SiteSettingService>();
|
|
services.AddScoped<CategoryService>();
|
|
services.AddScoped<AnnouncementService>();
|
|
services.AddSingleton<SeasonalMarketingService>();
|
|
services.AddScoped<ClientService>();
|
|
return services;
|
|
}
|
|
}
|