dotnet-onion-architecture
.Net onion/clean architecture sample
파일 탐색기
최종 버전 다운로드 (.zip)- ddd-banner.drawio
- ddd-banner.png
- dotnet-onion-architecture.png
- onion-diagram.drawio
- Email.cs
- MailAttachment.cs
- IEmailService.cs
- ILoggerService.cs
- IUserService.cs
- UserDTO.cs
- CreateUserReq.cs
- ValidateUserReq.cs
- CreateUserRes.cs
- GetAllActiveUsersRes.cs
- ValidateUserRes.cs
- UserService.cs
- MyApp.Application.csproj
- ServiceExtensions.cs
- BaseEntity.cs
- IAuditableEntity.cs
- ISoftDeleteEntity.cs
- IBaseRepositoryAsync.cs
- IUnitOfWork.cs
- BaseSpecification.cs
- ISpecification.cs
- User.cs
- UserStatus.cs
- UserIsNotActiveException.cs
- UserNotFoundException.cs
- UserSpecifications.cs
- MyApp.Domain.csproj
- 20230810042311_InitialMigration.cs
- 20230810042311_InitialMigration.Designer.cs
- MyAppDbContextModelSnapshot.cs
- MyAppDbContext.cs
- BaseRepositoryAsync.cs
- SpecificationEvaluator.cs
- UnitOfWork.cs
- EmailService.cs
- LoggerService.cs
- MyApp.Infrastructure.csproj
- nlog.config
- ServiceExtensions.cs
- UserController.cs
- launchSettings.json
- appsettings.Development.json
- appsettings.json
- MyApp.WebApi.csproj
- Program.cs
- UserServiceTest.cs
- MyApp.Application.Test.csproj
- SpecificationEvaluatorTestHelper.cs
- UserSpecificationsTest.cs
- MyApp.Domain.Test.csproj
- BaseRepositoryAsyncTest.cs
- MyApp.Infrastructure.Test.csproj
- .gitattributes
- .gitignore
- Commands.md
- LICENSE
- MyApp.sln
- README.md
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/NilavPatel/dotnet-onion-architecture
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd dotnet-onion-architecture
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. .NET
보통 추천- Use DataAnnotation (https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.dataannotations?view=net-7.0)
이 명령어를 터미널에 그대로 입력해 실행하세요.
dotnet run 실행 후 터미널에 나타나는 안내 메시지나 주소를 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
