├── .gitattributes ├── .gitignore ├── DBCreationScript.txt ├── DddInPractice.Logic ├── Atms │ ├── Atm.cs │ ├── AtmDto.cs │ ├── AtmMap.cs │ ├── AtmRepository.cs │ ├── BalanceChangedEvent.cs │ └── PaymentGateway.cs ├── Common │ ├── AggregateRoot.cs │ ├── DomainEvents.cs │ ├── DomainEvents_old.cs │ ├── Entity.cs │ ├── IDomainEvent.cs │ ├── IHandler.cs │ ├── Repository.cs │ └── ValueObject.cs ├── DddInPractice.Logic.csproj ├── DddInPractice.Logic.csproj.user ├── Management │ ├── BalanceChangedEventHandler.cs │ ├── HeadOffice.cs │ ├── HeadOfficeInstance.cs │ ├── HeadOfficeMap.cs │ └── HeadOfficeRepository.cs ├── Properties │ └── AssemblyInfo.cs ├── SharedKernel │ └── Money.cs ├── SnackMachines │ ├── Slot.cs │ ├── SlotMap.cs │ ├── Snack.cs │ ├── SnackMachine.cs │ ├── SnackMachineDto.cs │ ├── SnackMachineMap.cs │ ├── SnackMachineRepository.cs │ ├── SnackMap.cs │ └── SnackPile.cs ├── Utils │ ├── EventListener.cs │ ├── Initer.cs │ └── SessionFactory.cs └── packages.config ├── DddInPractice.Tests ├── AtmSpecs.cs ├── DddInPractice.Tests.csproj ├── MoneySpecs.cs ├── Properties │ └── AssemblyInfo.cs ├── SnackMachineSpecs.cs └── packages.config ├── DddInPractice.UI ├── App.config ├── App.xaml ├── App.xaml.cs ├── Atms │ ├── AtmViewModel.cs │ └── AtmViewModel.xaml ├── Common │ ├── Command.cs │ ├── CustomWindow.xaml │ ├── CustomWindow.xaml.cs │ ├── DialogCloser.cs │ ├── Images.xaml │ ├── MainDataTemplateSelector.cs │ ├── MainViewModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── ViewModel.cs ├── DddInPractice.UI.csproj ├── DddInPractice.UI.csproj.user ├── Images │ ├── 10c.png │ ├── 1c.png │ ├── 1d.png │ ├── 20d.png │ ├── 25c.png │ ├── 5d.png │ ├── Chocolate.png │ ├── Gum.png │ ├── Icon.png │ └── Soda.png ├── Management │ ├── DashboardViewModel.cs │ └── DashboardViewModel.xaml ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SnackMachines │ ├── SnackMachineViewModel.cs │ ├── SnackMachineViewModel.xaml │ └── SnackPileViewModel.cs ├── Utils │ └── DialogService.cs └── packages.config ├── DddInPractice.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/.gitignore -------------------------------------------------------------------------------- /DBCreationScript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DBCreationScript.txt -------------------------------------------------------------------------------- /DddInPractice.Logic/Atms/Atm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Atms/Atm.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Atms/AtmDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Atms/AtmDto.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Atms/AtmMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Atms/AtmMap.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Atms/AtmRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Atms/AtmRepository.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Atms/BalanceChangedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Atms/BalanceChangedEvent.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Atms/PaymentGateway.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Atms/PaymentGateway.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/AggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/AggregateRoot.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/DomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/DomainEvents.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/DomainEvents_old.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/DomainEvents_old.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/Entity.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/IDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/IDomainEvent.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/IHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/IHandler.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/Repository.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Common/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Common/ValueObject.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/DddInPractice.Logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/DddInPractice.Logic.csproj -------------------------------------------------------------------------------- /DddInPractice.Logic/DddInPractice.Logic.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/DddInPractice.Logic.csproj.user -------------------------------------------------------------------------------- /DddInPractice.Logic/Management/BalanceChangedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Management/BalanceChangedEventHandler.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Management/HeadOffice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Management/HeadOffice.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Management/HeadOfficeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Management/HeadOfficeInstance.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Management/HeadOfficeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Management/HeadOfficeMap.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Management/HeadOfficeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Management/HeadOfficeRepository.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SharedKernel/Money.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SharedKernel/Money.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/Slot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/Slot.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/SlotMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/SlotMap.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/Snack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/Snack.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/SnackMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/SnackMachine.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/SnackMachineDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/SnackMachineDto.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/SnackMachineMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/SnackMachineMap.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/SnackMachineRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/SnackMachineRepository.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/SnackMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/SnackMap.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/SnackMachines/SnackPile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/SnackMachines/SnackPile.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Utils/EventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Utils/EventListener.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Utils/Initer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Utils/Initer.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/Utils/SessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/Utils/SessionFactory.cs -------------------------------------------------------------------------------- /DddInPractice.Logic/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Logic/packages.config -------------------------------------------------------------------------------- /DddInPractice.Tests/AtmSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Tests/AtmSpecs.cs -------------------------------------------------------------------------------- /DddInPractice.Tests/DddInPractice.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Tests/DddInPractice.Tests.csproj -------------------------------------------------------------------------------- /DddInPractice.Tests/MoneySpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Tests/MoneySpecs.cs -------------------------------------------------------------------------------- /DddInPractice.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DddInPractice.Tests/SnackMachineSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Tests/SnackMachineSpecs.cs -------------------------------------------------------------------------------- /DddInPractice.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.Tests/packages.config -------------------------------------------------------------------------------- /DddInPractice.UI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/App.config -------------------------------------------------------------------------------- /DddInPractice.UI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/App.xaml -------------------------------------------------------------------------------- /DddInPractice.UI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/App.xaml.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Atms/AtmViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Atms/AtmViewModel.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Atms/AtmViewModel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Atms/AtmViewModel.xaml -------------------------------------------------------------------------------- /DddInPractice.UI/Common/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/Command.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Common/CustomWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/CustomWindow.xaml -------------------------------------------------------------------------------- /DddInPractice.UI/Common/CustomWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/CustomWindow.xaml.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Common/DialogCloser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/DialogCloser.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Common/Images.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/Images.xaml -------------------------------------------------------------------------------- /DddInPractice.UI/Common/MainDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/MainDataTemplateSelector.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Common/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/MainViewModel.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Common/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/MainWindow.xaml -------------------------------------------------------------------------------- /DddInPractice.UI/Common/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/MainWindow.xaml.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Common/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Common/ViewModel.cs -------------------------------------------------------------------------------- /DddInPractice.UI/DddInPractice.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/DddInPractice.UI.csproj -------------------------------------------------------------------------------- /DddInPractice.UI/DddInPractice.UI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/DddInPractice.UI.csproj.user -------------------------------------------------------------------------------- /DddInPractice.UI/Images/10c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/10c.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/1c.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/1d.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/20d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/20d.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/25c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/25c.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/5d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/5d.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/Chocolate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/Chocolate.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/Gum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/Gum.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/Icon.png -------------------------------------------------------------------------------- /DddInPractice.UI/Images/Soda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Images/Soda.png -------------------------------------------------------------------------------- /DddInPractice.UI/Management/DashboardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Management/DashboardViewModel.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Management/DashboardViewModel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Management/DashboardViewModel.xaml -------------------------------------------------------------------------------- /DddInPractice.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Properties/Resources.resx -------------------------------------------------------------------------------- /DddInPractice.UI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Properties/Settings.settings -------------------------------------------------------------------------------- /DddInPractice.UI/SnackMachines/SnackMachineViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/SnackMachines/SnackMachineViewModel.cs -------------------------------------------------------------------------------- /DddInPractice.UI/SnackMachines/SnackMachineViewModel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/SnackMachines/SnackMachineViewModel.xaml -------------------------------------------------------------------------------- /DddInPractice.UI/SnackMachines/SnackPileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/SnackMachines/SnackPileViewModel.cs -------------------------------------------------------------------------------- /DddInPractice.UI/Utils/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/Utils/DialogService.cs -------------------------------------------------------------------------------- /DddInPractice.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.UI/packages.config -------------------------------------------------------------------------------- /DddInPractice.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/DddInPractice.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vkhorikov/DddInAction/HEAD/README.md --------------------------------------------------------------------------------