Download Vita Free Java Code

Description

A sample implementation of my Regalo DDD/CQRS/ES library that contains multiple bounded contexts useful for managing one's personal affairs.

Icons

Vita

Source Files

The download file Vita-master.zip has the following entries.


.gitignore// ww w.j a v  a 2s  .  c o m
.nuget/NuGet.Config
.nuget/NuGet.exe
.nuget/NuGet.targets
README.md
Vita.Domain.Tests.Unit/Accounting/CreateAccountTests.cs
Vita.Domain.Tests.Unit/Accounting/MoneyTests.cs
Vita.Domain.Tests.Unit/Accounting/RecordTransactionTest.cs
Vita.Domain.Tests.Unit/Accounting/TransferTest.cs
Vita.Domain.Tests.Unit/DefaultTimeWithOffsetProviderTests.cs
Vita.Domain.Tests.Unit/Properties/AssemblyInfo.cs
Vita.Domain.Tests.Unit/TestFixtureBase.cs
Vita.Domain.Tests.Unit/TestGuidProvider.cs
Vita.Domain.Tests.Unit/TestTimeWithOffsetProvider.cs
Vita.Domain.Tests.Unit/Vita.Domain.Tests.Unit.csproj
Vita.Domain.Tests.Unit/packages.config
Vita.Domain/Accounting/Account.cs
Vita.Domain/Accounting/AccountCredited.cs
Vita.Domain/Accounting/AccountDebited.cs
Vita.Domain/Accounting/AccountOpened.cs
Vita.Domain/Accounting/AccountOpenedHandler.cs
Vita.Domain/Accounting/AccountType.cs
Vita.Domain/Accounting/CreditIsIncreaseBalanceStrategy.cs
Vita.Domain/Accounting/DebitIsIncreaseBalanceStrategy.cs
Vita.Domain/Accounting/FundsTransfer.cs
Vita.Domain/Accounting/FundsTransferRequested.cs
Vita.Domain/Accounting/FundsTransferSaga.cs
Vita.Domain/Accounting/IAccountBalanceChangeStrategy.cs
Vita.Domain/Accounting/Money.cs
Vita.Domain/Accounting/OpenAccount.cs
Vita.Domain/Accounting/OpenAccountHandler.cs
Vita.Domain/Accounting/RequestFundsTransfer.cs
Vita.Domain/Accounting/RequestFundsTransferHandler.cs
Vita.Domain/DefaultGuidProvider.cs
Vita.Domain/DefaultTimeWithOffsetProvider.cs
Vita.Domain/DomainException.cs
Vita.Domain/GuidProvider.cs
Vita.Domain/Properties/AssemblyInfo.cs
Vita.Domain/TimeWithOffsetProvider.cs
Vita.Domain/Vita.Domain.csproj
Vita.Domain/packages.config
Vita.Infrastructure/ISqlConnectionFactory.cs
Vita.Infrastructure/Properties/AssemblyInfo.cs
Vita.Infrastructure/Vita.Infrastructure.csproj
Vita.SqlProjection/Accounting/AccountOpenedHandler.cs
Vita.SqlProjection/Properties/AssemblyInfo.cs
Vita.SqlProjection/Vita.SqlProjection.csproj
Vita.SqlProjection/packages.config
Vita.Web/App_Readme/Elmah.txt
Vita.Web/Areas/Accounting/AccountingAreaRegistration.cs
Vita.Web/Areas/Accounting/Controllers/AccountController.cs
Vita.Web/Areas/Accounting/Controllers/HomeController.cs
Vita.Web/Areas/Accounting/Models/Account/AccountTransactionViewModel.cs
Vita.Web/Areas/Accounting/Models/Account/AccountViewModel.cs
Vita.Web/Areas/Accounting/Models/Account/OpenAccountViewModel.cs
Vita.Web/Areas/Accounting/Models/Account/RecentTransactionsViewModel.cs
Vita.Web/Areas/Accounting/Models/Home/AccountListItemViewModel.cs
Vita.Web/Areas/Accounting/Models/Home/IndexViewModel.cs
Vita.Web/Areas/Accounting/Views/Account/DisplayTemplates/AccountTransactionViewModel.cshtml
Vita.Web/Areas/Accounting/Views/Account/Open.cshtml
Vita.Web/Areas/Accounting/Views/Account/RecentTransactions.cshtml
Vita.Web/Areas/Accounting/Views/Home/Index.cshtml
Vita.Web/Areas/Accounting/Views/Web.config
Vita.Web/Areas/Accounting/Views/_ViewStart.cshtml
Vita.Web/Areas/Inventory/InventoryAreaRegistration.cs
Vita.Web/Areas/Inventory/Views/Web.config
Vita.Web/Content/Custom.css
Vita.Web/Content/Site.css
Vita.Web/Content/bootstrap-responsive.css
Vita.Web/Content/bootstrap-responsive.min.css
Vita.Web/Content/bootstrap.css
Vita.Web/Content/bootstrap.min.css
Vita.Web/Content/images/glyphicons-halflings-white.png
Vita.Web/Content/images/glyphicons-halflings.png
Vita.Web/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
Vita.Web/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
Vita.Web/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
Vita.Web/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
Vita.Web/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
Vita.Web/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
Vita.Web/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
Vita.Web/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
Vita.Web/Content/themes/base/images/ui-icons_222222_256x240.png
Vita.Web/Content/themes/base/images/ui-icons_2e83ff_256x240.png
Vita.Web/Content/themes/base/images/ui-icons_454545_256x240.png
Vita.Web/Content/themes/base/images/ui-icons_888888_256x240.png
Vita.Web/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
Vita.Web/Content/themes/base/jquery.ui.accordion.css
Vita.Web/Content/themes/base/jquery.ui.all.css
Vita.Web/Content/themes/base/jquery.ui.autocomplete.css
Vita.Web/Content/themes/base/jquery.ui.base.css
Vita.Web/Content/themes/base/jquery.ui.button.css
Vita.Web/Content/themes/base/jquery.ui.core.css
Vita.Web/Content/themes/base/jquery.ui.datepicker.css
Vita.Web/Content/themes/base/jquery.ui.dialog.css
Vita.Web/Content/themes/base/jquery.ui.progressbar.css
Vita.Web/Content/themes/base/jquery.ui.resizable.css
Vita.Web/Content/themes/base/jquery.ui.selectable.css
Vita.Web/Content/themes/base/jquery.ui.slider.css
Vita.Web/Content/themes/base/jquery.ui.tabs.css
Vita.Web/Content/themes/base/jquery.ui.theme.css
Vita.Web/Controllers/AccountController.cs
Vita.Web/Controllers/HomeController.cs
Vita.Web/Global.asax
Vita.Web/Global.asax.cs
Vita.Web/Infrastructure/CommandHandlerInstaller.cs
Vita.Web/Infrastructure/ControllerInstaller.cs
Vita.Web/Infrastructure/DataAccessInstaller.cs
Vita.Web/Infrastructure/HtmlExtensions.cs
Vita.Web/Infrastructure/MySqlConnectionFactory.cs
Vita.Web/Infrastructure/RepositoryInstaller.cs
Vita.Web/Infrastructure/VitaVersionHandler.cs
Vita.Web/Infrastructure/WindsorControllerFactory.cs
Vita.Web/Models/AccountModels.cs
Vita.Web/Properties/AssemblyInfo.cs
Vita.Web/Scripts/MicrosoftAjax.debug.js
Vita.Web/Scripts/MicrosoftAjax.js
Vita.Web/Scripts/MicrosoftMvcAjax.debug.js
Vita.Web/Scripts/MicrosoftMvcAjax.js
Vita.Web/Scripts/MicrosoftMvcValidation.debug.js
Vita.Web/Scripts/MicrosoftMvcValidation.js
Vita.Web/Scripts/bootstrap.js
Vita.Web/Scripts/bootstrap.min.js
Vita.Web/Scripts/jquery-1.5.1-vsdoc.js
Vita.Web/Scripts/jquery-1.5.1.js
Vita.Web/Scripts/jquery-1.5.1.min.js
Vita.Web/Scripts/jquery-ui-1.8.11.js
Vita.Web/Scripts/jquery-ui-1.8.11.min.js
Vita.Web/Scripts/jquery.unobtrusive-ajax.js
Vita.Web/Scripts/jquery.unobtrusive-ajax.min.js
Vita.Web/Scripts/jquery.validate-vsdoc.js
Vita.Web/Scripts/jquery.validate.js
Vita.Web/Scripts/jquery.validate.min.js
Vita.Web/Scripts/jquery.validate.unobtrusive.js
Vita.Web/Scripts/jquery.validate.unobtrusive.min.js
Vita.Web/Scripts/modernizr-1.7.js
Vita.Web/Scripts/modernizr-1.7.min.js
Vita.Web/Views/Account/ChangePassword.cshtml
Vita.Web/Views/Account/ChangePasswordSuccess.cshtml
Vita.Web/Views/Account/LogOn.cshtml
Vita.Web/Views/Account/Register.cshtml
Vita.Web/Views/Home/About.cshtml
Vita.Web/Views/Home/Index.cshtml
Vita.Web/Views/Shared/Error.cshtml
Vita.Web/Views/Shared/_Layout.cshtml
Vita.Web/Views/Shared/_LogOnPartial.cshtml
Vita.Web/Views/Web.config
Vita.Web/Views/_ViewStart.cshtml
Vita.Web/Vita.Web.csproj
Vita.Web/Web.Debug.config
Vita.Web/Web.Release.config
Vita.Web/Web.config
Vita.Web/packages.config
Vita.WindowsStoreApp/App.xaml
Vita.WindowsStoreApp/App.xaml.cs
Vita.WindowsStoreApp/Assets/DarkGray.png
Vita.WindowsStoreApp/Assets/LightGray.png
Vita.WindowsStoreApp/Assets/Logo.png
Vita.WindowsStoreApp/Assets/MediumGray.png
Vita.WindowsStoreApp/Assets/SmallLogo.png
Vita.WindowsStoreApp/Assets/SplashScreen.png
Vita.WindowsStoreApp/Assets/StoreLogo.png
Vita.WindowsStoreApp/Common/BindableBase.cs
Vita.WindowsStoreApp/Common/BooleanNegationConverter.cs
Vita.WindowsStoreApp/Common/BooleanToVisibilityConverter.cs
Vita.WindowsStoreApp/Common/LayoutAwarePage.cs
Vita.WindowsStoreApp/Common/ReadMe.txt
Vita.WindowsStoreApp/Common/RichTextColumns.cs
Vita.WindowsStoreApp/Common/StandardStyles.xaml
Vita.WindowsStoreApp/Common/SuspensionManager.cs
Vita.WindowsStoreApp/DataModel/SampleDataSource.cs
Vita.WindowsStoreApp/GroupDetailPage.xaml
Vita.WindowsStoreApp/GroupDetailPage.xaml.cs
Vita.WindowsStoreApp/GroupedItemsPage.xaml
Vita.WindowsStoreApp/GroupedItemsPage.xaml.cs
Vita.WindowsStoreApp/ItemDetailPage.xaml
Vita.WindowsStoreApp/ItemDetailPage.xaml.cs
Vita.WindowsStoreApp/Package.appxmanifest
Vita.WindowsStoreApp/Properties/AssemblyInfo.cs
Vita.WindowsStoreApp/Vita.WindowsStoreApp.csproj
Vita.WindowsStoreApp/Vita.WindowsStoreApp_TemporaryKey.pfx
Vita.sln
Vita.sln.DotSettings
vita.sql

Download

Click the following link to download Vita-master.zip.

Vita-master.zip




















Home »
  Javascript Free Code Download »
    Library »




AngularJS
Backbone.JS
CommonJS
Datejs
Dojo
EmberJS
ExtJs
Framework
Library
MooTools
RequireJS
Sencha
Yui