├── LCLDemo ├── DeleteBin.bat ├── Documents │ ├── DomainEvents.jpg │ ├── EventAggregator.jpg │ ├── LCLDemo.eap │ ├── demo_index.png │ ├── demo_list.png │ ├── demo_p.jpg │ └── model.jpg ├── LCL.Application │ ├── Implementation │ │ ├── OrderServiceImpl.cs │ │ ├── ProductServiceImpl.cs │ │ └── UserServiceImpl.cs │ ├── LCL.Application.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── key.snk │ └── packages.config ├── LCL.Domain.Repositories │ ├── EntityFramework │ │ ├── CategorizationRepository.cs │ │ ├── CategoryRepository.cs │ │ ├── EFTestContext.cs │ │ ├── ModelConfigurations │ │ │ ├── CategorizationTypeConfiguration.cs │ │ │ ├── CategoryTypeConfiguration.cs │ │ │ ├── ProductTypeConfiguration.cs │ │ │ ├── RoleTypeConfiguration.cs │ │ │ ├── SalesLineTypeConfiguration.cs │ │ │ ├── SalesOrderTypeConfiguration.cs │ │ │ ├── ShoppingCartItemTypeConfiguration.cs │ │ │ ├── ShoppingCartTypeConfiguration.cs │ │ │ ├── UserRoleTypeConfiguration.cs │ │ │ └── UserTypeConfiguration.cs │ │ ├── ProductRepository.cs │ │ ├── RoleRepository.cs │ │ ├── SalesOrderRepository.cs │ │ ├── ShoppingCartItemRepository.cs │ │ ├── ShoppingCartRepository.cs │ │ ├── UserRepository.cs │ │ └── UserRoleRepository.cs │ ├── LCL.Domain.Repositories.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── XDocuments │ │ └── UserRepository.cs │ ├── app.config │ └── key.snk ├── LCL.Domain │ ├── Events │ │ ├── GetUserOrdersEvent.cs │ │ ├── Handlers │ │ │ ├── GetUserOrdersEventHandler.cs │ │ │ ├── OrderConfirmedEventHandler.cs │ │ │ ├── OrderDispatchedEventHandler.cs │ │ │ └── SendEmailHandler.cs │ │ ├── OrderConfirmedEvent.cs │ │ └── OrderDispatchedEvent.cs │ ├── LCL.Domain.csproj │ ├── Model │ │ ├── Address.cs │ │ ├── Categorization.cs │ │ ├── Category.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── SalesLine.cs │ │ ├── SalesOrder.cs │ │ ├── SalesOrderStatus.cs │ │ ├── ShoppingCart.cs │ │ ├── ShoppingCartItem.cs │ │ ├── User.cs │ │ ├── UserRole.cs │ │ ├── ValidationModel │ │ │ └── Role.cs │ │ └── ViewModels │ │ │ └── ShoppingCartModels.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Repositories │ │ ├── ICategorizationRepository.cs │ │ ├── ICategoryRepository.cs │ │ ├── IProductRepository.cs │ │ ├── IRoleRepository.cs │ │ ├── ISalesOrderRepository.cs │ │ ├── IShoppingCartItemRepository.cs │ │ ├── IShoppingCartRepository.cs │ │ ├── IUserRepository.cs │ │ └── IUserRoleRepository.cs │ ├── Services │ │ ├── ILCLDomainService.cs │ │ ├── IOrderService.cs │ │ ├── IPostbackService.cs │ │ ├── IProductService.cs │ │ ├── IUserService.cs │ │ └── LDomainService.cs │ ├── Specifications │ │ ├── SalesOrderBelongsToUserSpecification.cs │ │ ├── SalesOrderIDEqualsSpecification.cs │ │ ├── ShoppingCartBelongsToCustomerSpecification.cs │ │ ├── ShoppingCartItemBelongsToShoppingCartSpecification.cs │ │ ├── ShoppingCartItemHasProductSpecification.cs │ │ ├── UserEmailEqualsSpecification.cs │ │ ├── UserNameEqualsSpecification.cs │ │ ├── UserPasswordEqualsSpecification.cs │ │ ├── UserRolesSpecification.cs │ │ └── UserStringEqualsSpecification.cs │ ├── ValueObject │ │ └── ValueObject.cs │ ├── app.config │ └── key.snk ├── LCL.Infrastructure │ ├── Config │ │ └── AppConfig.cs │ ├── FaultData.cs │ ├── LCL.Infrastructure.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── app.config │ └── key.snk ├── LCL.Services │ ├── Connected Services │ │ └── index.htm │ ├── Global.asax │ ├── Global.asax.cs │ ├── Infrastructure │ │ └── DependencyRegistrar.cs │ ├── LCL.Services.csproj │ ├── OrderService.svc │ ├── OrderService.svc.cs │ ├── Plugins │ │ └── index.htm │ ├── ProductService.svc │ ├── ProductService.svc.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── CustomProfile.pubxml │ ├── ReadMe.txt │ ├── UserService.svc │ ├── UserService.svc.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── index.html │ └── packages.config ├── LCL.Web.BootstrapMvc │ ├── BootstrapHelper.cs │ ├── BootstrapModels │ │ ├── BootstrapBreadcrumb.cs │ │ ├── BootstrapList.cs │ │ ├── BootstrapMenuForm.cs │ │ ├── BootstrapMenuItemContainer.cs │ │ ├── BootstrapMvcMenu.cs │ │ └── BootstrapMvcPage.cs │ ├── CustomDictionary.xml │ ├── Enums │ │ ├── Buttons.cs │ │ ├── Forms.cs │ │ ├── Images.cs │ │ ├── Menus.cs │ │ ├── ProgressBar.cs │ │ ├── Tables.cs │ │ └── Typography.cs │ ├── LCL.Web.BootstrapMvc.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReadMe.txt │ ├── TagBuilderExt.cs │ ├── VisitedPage.cs │ ├── key.snk │ └── packages.config ├── LCL.WebAPI │ ├── App_Data │ │ ├── InstalledPlugins.txt │ │ ├── LCLTestDB.sdf │ │ ├── Localization │ │ │ ├── installation.en.xml │ │ │ └── installation.zhs.xml │ │ ├── Log │ │ │ └── Error20170717.log │ │ ├── Restful API 接口规范.doc │ │ ├── demo_data │ │ │ ├── Products │ │ │ │ ├── 29ebfc59_e14a_49bc_9a41_d0796f392475.jpg │ │ │ │ ├── 2d3df03f_0663_4f9a_8f6c_cb0af683cd23.jpg │ │ │ │ ├── 333c0de9_cae2_4458_a675_3560e8525ae5.jpg │ │ │ │ ├── 43dd3fe6_4203_41dd_b570_2c9eacb7c021.jpg │ │ │ │ ├── 774f83b1_e90d_4ff1_a148_f90af591a865.jpg │ │ │ │ ├── 82d1556f_1238_43ce_a5fd_410cc246162e.jpg │ │ │ │ ├── ProductImage.png │ │ │ │ ├── a1c1738a_eaba_4c4c_b683_7c5b4eb64306.jpg │ │ │ │ ├── b182e978_85e1_474d_84e3_e505441e9000.jpg │ │ │ │ ├── bc0d0d76_3d79_472e_86bb_63a9376d2bab.jpg │ │ │ │ ├── bc2dbf1a_699a_4eaf_a49f_4eccc199bb55.jpg │ │ │ │ ├── c9285a49_972c_4356_a893_3e2a4e45c17d.jpg │ │ │ │ ├── d5d4367d_ab87_4687_8d7c_d1544acf50d1.jpg │ │ │ │ ├── d633a09b_479f_4af2_af9d_635b7a59e1b7.jpg │ │ │ │ ├── dafeaaed_0b93_45ea_8b04_00dd86c62d5e.jpg │ │ │ │ └── dd34e809_b1fc_4c75_b8f9_c5444a64cb47.jpg │ │ │ ├── eftestcontext.sql │ │ │ └── favicon.ico │ │ └── index.htm │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ ├── SwaggerConfig.cs │ │ └── WebApiConfig.cs │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── myStyle.css │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── v1 │ │ │ ├── EntityController.cs │ │ │ ├── OrderServiceController.cs │ │ │ ├── ProductServiceController.cs │ │ │ └── UserServiceController.cs │ │ └── v2 │ │ │ └── index.htm │ ├── Global.asax │ ├── Global.asax.cs │ ├── Infrastructure │ │ └── DependencyRegistrar.cs │ ├── LCL.WebAPI.csproj │ ├── Log │ │ ├── Info20170718.log │ │ ├── Info20170719.log │ │ └── Info20170731.log │ ├── Models │ │ └── index.htm │ ├── Plugins │ │ └── index.htm │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── CustomProfile.pubxml │ ├── ReadMe.txt │ ├── RestAPI.JSON │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── modernizr-2.6.2.js │ │ └── swagger_lang_zh-cn.js │ ├── Utility │ │ ├── AccessKeyAttribute.cs │ │ ├── ApplySchemaVendorFilter.cs │ │ ├── CachingSwaggerProvider.cs │ │ ├── DocumentFilter.cs │ │ ├── HttpHeaderFilter.cs │ │ ├── MyControllerSelector.cs │ │ ├── NamespaceHttpControllerSelector.cs │ │ ├── SwaggerVersionHelper.cs │ │ └── UploadFilter.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── key.snk │ └── packages.config ├── LCL.WebMvc │ ├── App_Data │ │ ├── InstalledPlugins.txt │ │ ├── LCLTestDB.sdf │ │ ├── Localization │ │ │ ├── installation.en.xml │ │ │ └── installation.zhs.xml │ │ ├── Log │ │ │ └── Error20170802.log │ │ ├── demo_data │ │ │ ├── Products │ │ │ │ ├── 29ebfc59_e14a_49bc_9a41_d0796f392475.jpg │ │ │ │ ├── 2d3df03f_0663_4f9a_8f6c_cb0af683cd23.jpg │ │ │ │ ├── 333c0de9_cae2_4458_a675_3560e8525ae5.jpg │ │ │ │ ├── 43dd3fe6_4203_41dd_b570_2c9eacb7c021.jpg │ │ │ │ ├── 774f83b1_e90d_4ff1_a148_f90af591a865.jpg │ │ │ │ ├── 82d1556f_1238_43ce_a5fd_410cc246162e.jpg │ │ │ │ ├── ProductImage.png │ │ │ │ ├── a1c1738a_eaba_4c4c_b683_7c5b4eb64306.jpg │ │ │ │ ├── b182e978_85e1_474d_84e3_e505441e9000.jpg │ │ │ │ ├── bc0d0d76_3d79_472e_86bb_63a9376d2bab.jpg │ │ │ │ ├── bc2dbf1a_699a_4eaf_a49f_4eccc199bb55.jpg │ │ │ │ ├── c9285a49_972c_4356_a893_3e2a4e45c17d.jpg │ │ │ │ ├── d5d4367d_ab87_4687_8d7c_d1544acf50d1.jpg │ │ │ │ ├── d633a09b_479f_4af2_af9d_635b7a59e1b7.jpg │ │ │ │ ├── dafeaaed_0b93_45ea_8b04_00dd86c62d5e.jpg │ │ │ │ └── dd34e809_b1fc_4c75_b8f9_c5444a64cb47.jpg │ │ │ ├── eftestcontext.sql │ │ │ └── favicon.ico │ │ └── index.htm │ ├── App_Start │ │ ├── BundleConfig.cs │ │ └── FilterConfig.cs │ ├── ApplicationInsights.config │ ├── Code │ │ ├── LCLMembershipProvider.cs │ │ ├── MemberProviderEX.cs │ │ ├── MyHtmlHelperExt.cs │ │ └── UrlHelperExtension.cs │ ├── Connected Services │ │ └── index.htm │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ └── docs.min.css │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── AdminController.cs │ │ ├── CommonController.cs │ │ ├── HomeController.cs │ │ ├── LayoutController.cs │ │ └── ProductController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Images │ │ ├── Add.png │ │ ├── Add2.png │ │ ├── Admin_32.png │ │ ├── Back.png │ │ ├── Bag.png │ │ ├── Cancel.png │ │ ├── Category_32.png │ │ ├── CopyTo.png │ │ ├── Delete.png │ │ ├── Disable.png │ │ ├── Edit.png │ │ ├── Enable.png │ │ ├── Login.png │ │ ├── Logout.png │ │ ├── Product_32.png │ │ ├── Products │ │ │ ├── 29ebfc59_e14a_49bc_9a41_d0796f392475.jpg │ │ │ ├── 2d3df03f_0663_4f9a_8f6c_cb0af683cd23.jpg │ │ │ ├── 333c0de9_cae2_4458_a675_3560e8525ae5.jpg │ │ │ ├── 43dd3fe6_4203_41dd_b570_2c9eacb7c021.jpg │ │ │ ├── 774f83b1_e90d_4ff1_a148_f90af591a865.jpg │ │ │ ├── 82d1556f_1238_43ce_a5fd_410cc246162e.jpg │ │ │ ├── ProductImage.png │ │ │ ├── a1c1738a_eaba_4c4c_b683_7c5b4eb64306.jpg │ │ │ ├── b182e978_85e1_474d_84e3_e505441e9000.jpg │ │ │ ├── bc0d0d76_3d79_472e_86bb_63a9376d2bab.jpg │ │ │ ├── bc2dbf1a_699a_4eaf_a49f_4eccc199bb55.jpg │ │ │ ├── c9285a49_972c_4356_a893_3e2a4e45c17d.jpg │ │ │ ├── d5d4367d_ab87_4687_8d7c_d1544acf50d1.jpg │ │ │ ├── d633a09b_479f_4af2_af9d_635b7a59e1b7.jpg │ │ │ ├── dafeaaed_0b93_45ea_8b04_00dd86c62d5e.jpg │ │ │ └── dd34e809_b1fc_4c75_b8f9_c5444a64cb47.jpg │ │ ├── Role_32.png │ │ ├── SalesOrder_32.png │ │ ├── Save.png │ │ ├── ShoppingCart.png │ │ ├── ShoppingCart256.png │ │ ├── ShoppingCart32.png │ │ ├── ShoppingCart64.png │ │ ├── Success_32.png │ │ ├── Update.png │ │ ├── User_32.png │ │ ├── afterlogo.jpg │ │ ├── arrows-ffffff.png │ │ ├── banner.jpg │ │ ├── byteartretail_logo.png │ │ ├── byteartretail_logo_trans.png │ │ ├── category.jpg │ │ ├── close.gif │ │ ├── favicon.ico │ │ ├── footer.jpg │ │ ├── hard.jpg │ │ ├── header.jpg │ │ ├── logo.jpg │ │ ├── menu.jpg │ │ ├── menu_beforelogo.jpg │ │ ├── newtovar.jpg │ │ ├── op.jpg │ │ ├── popular.jpg │ │ ├── shadow.png │ │ ├── spacer.gif │ │ ├── taling.jpg │ │ ├── taling_center.jpg │ │ └── trash.jpg │ ├── Infrastructure │ │ ├── DependencyRegistrar.cs │ │ └── RouteProvider.cs │ ├── LCL.WebMvc.csproj │ ├── Log │ │ ├── Error20170718.log │ │ ├── Error20170719.log │ │ ├── Error20170802.log │ │ ├── Info20170717.log │ │ ├── Info20170718.log │ │ ├── Info20170719.log │ │ ├── Info20170722.log │ │ ├── Info20170731.log │ │ ├── Info20170801.log │ │ └── Info20170802.log │ ├── Models │ │ ├── AccountModels.cs │ │ └── UserAccountModel.cs │ ├── Plugins │ │ └── index.htm │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── CustomProfile.pubxml │ ├── ReadMe.txt │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ ├── Views │ │ ├── Account │ │ │ ├── Account.cshtml │ │ │ ├── Login.cshtml │ │ │ └── Register.cshtml │ │ ├── Admin │ │ │ ├── AddCategory.cshtml │ │ │ ├── AddProduct.cshtml │ │ │ ├── AddRole.cshtml │ │ │ ├── AddUserAccount.cshtml │ │ │ ├── Administration.cshtml │ │ │ ├── Categories.cshtml │ │ │ ├── EditCategory.cshtml │ │ │ ├── EditProduct.cshtml │ │ │ ├── EditRole.cshtml │ │ │ ├── EditUserAccount.cshtml │ │ │ ├── Products.cshtml │ │ │ ├── Roles.cshtml │ │ │ ├── SalesOrder.cshtml │ │ │ ├── SalesOrders.cshtml │ │ │ └── UserAccounts.cshtml │ │ ├── Common │ │ │ ├── Footer.cshtml │ │ │ ├── LanguageSelector.cshtml │ │ │ ├── PageNotFound.cshtml │ │ │ ├── Sitemap.cshtml │ │ │ └── SuccessPage.cshtml │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── SalesOrder.cshtml │ │ │ ├── SalesOrders.cshtml │ │ │ └── ShoppingCart.cshtml │ │ ├── Product │ │ │ ├── Category.cshtml │ │ │ ├── Index.cshtml │ │ │ └── ProductInfo.cshtml │ │ ├── Shared │ │ │ ├── CategoriesPartial.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── FeaturedProductsPartial.cshtml │ │ │ ├── ProductsPartial.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── key.snk │ └── packages.config ├── LCLWebMvcDemo.sln └── LCLWebMvcDemo.v12.suo ├── LICENSE ├── README.md └── Source ├── .nuget ├── NuGet.Config ├── NuGet.exe ├── NuGet.targets ├── pack.ps1 ├── pushNupkg.bat └── 发布到nuget官网.bat ├── Build.bat ├── DeleteBin.bat ├── Document ├── Apache20.rtf ├── StyleCop.Cache ├── logo.ico └── logo.jpg ├── LCL.FxCop ├── LCL.sln ├── Packages.dgml ├── README.md ├── Settings.StyleCop ├── StyleCop.Cache ├── Tests └── LCL.Tests │ ├── ACore │ ├── Domain │ │ ├── Events │ │ │ ├── GetUserOrdersEvent.cs │ │ │ ├── Handlers │ │ │ │ ├── GetUserOrdersEventHandler.cs │ │ │ │ ├── OrderConfirmedEventHandler.cs │ │ │ │ ├── OrderDispatchedEventHandler.cs │ │ │ │ └── SendEmailHandler.cs │ │ │ ├── OrderConfirmedEvent.cs │ │ │ └── OrderDispatchedEvent.cs │ │ ├── Model │ │ │ ├── Address.cs │ │ │ ├── Categorization.cs │ │ │ ├── Category.cs │ │ │ ├── Product.cs │ │ │ ├── Role.cs │ │ │ ├── SalesLine.cs │ │ │ ├── SalesOrder.cs │ │ │ ├── SalesOrderStatus.cs │ │ │ ├── ShoppingCart.cs │ │ │ ├── ShoppingCartItem.cs │ │ │ ├── User.cs │ │ │ └── UserRole.cs │ │ ├── Repositories │ │ │ ├── EntityFramework │ │ │ │ ├── CategorizationRepository.cs │ │ │ │ ├── CategoryRepository.cs │ │ │ │ ├── EFTestContext.cs │ │ │ │ ├── ModelConfigurations │ │ │ │ │ ├── CategorizationTypeConfiguration.cs │ │ │ │ │ ├── CategoryTypeConfiguration.cs │ │ │ │ │ ├── ProductTypeConfiguration.cs │ │ │ │ │ ├── RoleTypeConfiguration.cs │ │ │ │ │ ├── SalesLineTypeConfiguration.cs │ │ │ │ │ ├── SalesOrderTypeConfiguration.cs │ │ │ │ │ ├── ShoppingCartItemTypeConfiguration.cs │ │ │ │ │ ├── ShoppingCartTypeConfiguration.cs │ │ │ │ │ ├── UserRoleTypeConfiguration.cs │ │ │ │ │ └── UserTypeConfiguration.cs │ │ │ │ ├── ProductRepository.cs │ │ │ │ ├── RoleRepository.cs │ │ │ │ ├── SalesOrderRepository.cs │ │ │ │ ├── ShoppingCartItemRepository.cs │ │ │ │ ├── ShoppingCartRepository.cs │ │ │ │ ├── UserRepository.cs │ │ │ │ └── UserRoleRepository.cs │ │ │ ├── ICategorizationRepository.cs │ │ │ ├── ICategoryRepository.cs │ │ │ ├── IProductRepository.cs │ │ │ ├── IRoleRepository.cs │ │ │ ├── ISalesOrderRepository.cs │ │ │ ├── IShoppingCartItemRepository.cs │ │ │ ├── IShoppingCartRepository.cs │ │ │ ├── IUserRepository.cs │ │ │ ├── IUserRoleRepository.cs │ │ │ ├── MongoDB │ │ │ │ ├── CategorizationRepository.cs │ │ │ │ ├── CategoryRepository.cs │ │ │ │ ├── GuidIDGeneratorConvention.cs │ │ │ │ ├── MongoDBBootstrapper.cs │ │ │ │ ├── MongoDBRepositoryContextSettings.cs │ │ │ │ ├── ProductRepository.cs │ │ │ │ ├── RoleRepository.cs │ │ │ │ ├── SalesOrderRepository.cs │ │ │ │ ├── ShoppingCartItemRepository.cs │ │ │ │ ├── ShoppingCartRepository.cs │ │ │ │ ├── UserLocalDateTimeConvention.cs │ │ │ │ ├── UserRepository.cs │ │ │ │ └── UserRoleRepository.cs │ │ │ ├── Specifications │ │ │ │ ├── SalesOrderBelongsToUserSpecification.cs │ │ │ │ ├── SalesOrderIDEqualsSpecification.cs │ │ │ │ ├── ShoppingCartBelongsToCustomerSpecification.cs │ │ │ │ ├── ShoppingCartItemBelongsToShoppingCartSpecification.cs │ │ │ │ ├── ShoppingCartItemHasProductSpecification.cs │ │ │ │ ├── UserEmailEqualsSpecification.cs │ │ │ │ ├── UserNameEqualsSpecification.cs │ │ │ │ ├── UserPasswordEqualsSpecification.cs │ │ │ │ ├── UserRolesSpecification.cs │ │ │ │ └── UserStringEqualsSpecification.cs │ │ │ └── XDocuments │ │ │ │ └── UserRepository.cs │ │ └── Services │ │ │ ├── FaultData.cs │ │ │ └── OrderService.cs │ ├── Helper.cs │ └── Infrastructure │ │ └── DependencyRegistrar.cs │ ├── App.config │ ├── Caching │ └── MemoryCacheManagerTests.cs │ ├── ComponentModel │ └── GenericListTypeConverter.cs │ ├── Domain │ ├── Events │ │ ├── Bus │ │ │ └── BusTest.cs │ │ └── TestDomainEvent.cs │ ├── Repositories │ │ ├── EFRepositoryTests.cs │ │ └── XMLRepositoryTests.cs │ ├── Services │ │ └── ServicesTest.cs │ └── Specifications │ │ └── Specification_Tests.cs │ ├── Extensions │ ├── ObjectExtension_Test.cs │ └── StringExtensions_Tests.cs │ ├── Fakes │ ├── FakeTypeFinder.cs │ └── TypeFindingBase.cs │ ├── Infrastructuretest │ ├── DependencyManagement │ │ └── AutofacTests.cs │ ├── SingletonTests.cs │ └── TypeFinderTests.cs │ ├── LCL.Tests.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── StyleCop.Cache │ ├── TestExtensions.cs │ ├── TestsBase.cs │ ├── olog.txt │ └── packages.config ├── appveyor.yml ├── common.props ├── src ├── LCL.AutoMapper │ ├── AutoMapAttribute.cs │ ├── AutoMapAttributeBase.cs │ ├── AutoMapExtensions.cs │ ├── AutoMapFromAttribute.cs │ ├── AutoMapToAttribute.cs │ ├── AutoMapperConfigurationExtensions.cs │ ├── AutoMapperObjectMapper.cs │ ├── DependencyRegistrar.cs │ ├── LCL.AutoMapper.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LCL.RedisCache │ ├── DependencyRegistrar.cs │ ├── IAbpRedisCacheDatabaseProvider.cs │ ├── IRedisCacheSerializer.cs │ ├── LCL.RedisCache.csproj │ ├── LclRedisCache.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedisDatabaseExtensions.cs │ ├── app.config │ └── packages.config ├── LCL.Repositories.EntityFramework │ ├── DbContextExtensions.cs │ ├── DependencyRegistrar.cs │ ├── EfStartupTask.cs │ ├── EntityFrameworkRepository.cs │ ├── EntityFrameworkRepositoryContext.cs │ ├── IEntityFrameworkRepositoryContext.cs │ ├── Initializers │ │ ├── AutoMigrationsConfiguration.cs │ │ ├── CreateCeDatabaseIfNotExists.cs │ │ ├── CreateTablesIfNotExist.cs │ │ ├── DropCreateCeDatabaseAlways.cs │ │ ├── DropCreateCeDatabaseIfModelChanges.cs │ │ └── SqlCeInitializer.cs │ ├── LCL.Repositories.EntityFramework.csproj │ ├── LclDbContext.cs │ ├── Mapping │ │ └── Configuration │ │ │ └── SettingMap.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StyleCop.Cache │ ├── key.snk │ └── packages.config ├── LCL.Repositories.MongoDB │ ├── Conventions │ │ ├── GuidIDGeneratorConvention.cs │ │ └── UseLocalDateTimeConvention.cs │ ├── DependencyRegistrar.cs │ ├── EfStartUpTask.cs │ ├── IMongoDBRepositoryContext.cs │ ├── IMongoDBRepositoryContextSettings.cs │ ├── LCL.Repositories.MongoDB.csproj │ ├── MongoDBRepository.cs │ ├── MongoDBRepositoryContext.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── StyleCop.Cache │ ├── key.snk │ └── packages.config ├── LCL.Repositories.NHibernate │ ├── DatabaseSessionFactory.cs │ ├── DependencyRegistrar.cs │ ├── INHibernateContext.cs │ ├── LCL.Repositories.NHibernate.csproj │ ├── NHibernateApplicationConfiguration.cs │ ├── NHibernateContext.cs │ ├── NHibernateRepository.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── LCL.VSIXProject │ ├── .vs │ │ └── LCL.VSIXProject │ │ │ └── v15 │ │ │ └── .suo │ ├── Apache20.rtf │ ├── Commands │ │ ├── CodeSnippetsCommand.cs │ │ ├── DeleteCustomFileNullLineCommand.cs │ │ ├── FileHeaderCommands.cs │ │ ├── ProjectTemplateCommand.cs │ │ └── VSContent.cs │ ├── Helper.cs │ ├── Key.snk │ ├── LCL.VSIXProject.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── DeleteCustomFileNullLineCommand.png │ │ ├── FileHeaderCommands.png │ │ ├── InstallCodeSnippetsCommand.png │ │ ├── InstallCodeSnippetsCommandPackage.ico │ │ └── ProjectTemplateCommand.png │ ├── Templates │ │ ├── ItemTemplates │ │ │ └── index.htm │ │ └── ProjectTemplates │ │ │ └── index.htm │ ├── VSPackage.resx │ ├── VSPackagePackage.cs │ ├── VSPackagePackage.vsct │ ├── _CodeSnippets │ │ ├── LCL_AggregateRoot.snippet │ │ ├── LCL_DbContext.snippet │ │ ├── LCL_DomainService.snippet │ │ ├── LCL_ModulePlugin.snippet │ │ ├── LCL_MyRepository.snippet │ │ ├── LCL_ServiceLocator.snippet │ │ └── LCL_Specification.snippet │ ├── _ReadMe.txt │ ├── index.html │ ├── logo.ico │ ├── logo.jpg │ ├── packages.config │ ├── source.extension.vsixmanifest │ └── stylesheet.css ├── LCL.Web │ ├── Configuration │ │ ├── ILclMvcConfiguration.cs │ │ └── LclMvcConfigurationExtensions.cs │ ├── DependencyRegistrar.cs │ ├── Fakes │ │ ├── Extensions.cs │ │ ├── FakeHttpContext.cs │ │ ├── FakeHttpRequest.cs │ │ ├── FakeHttpResponse.cs │ │ ├── FakeHttpSessionState.cs │ │ ├── FakeIdentity.cs │ │ └── FakePrincipal.cs │ ├── LCL.Web.csproj │ ├── Localization │ │ ├── ILocalizedModel.cs │ │ ├── ILocalizedModelLocal.cs │ │ ├── LocalizedRoute.cs │ │ ├── LocalizedRouteExtensions.cs │ │ ├── LocalizedString.cs │ │ └── Localizer.cs │ ├── Menu │ │ ├── SiteMapNode.cs │ │ └── XmlSiteMap.cs │ ├── Mvc │ │ ├── Controllers │ │ │ ├── LController!.cs │ │ │ └── LController.cs │ │ ├── Extensions │ │ │ └── HtmlExtensions.cs │ │ ├── Models │ │ │ ├── AddOrEditViewModel.cs │ │ │ ├── BaseLclModel.cs │ │ │ ├── DeleteConfirmationModel.cs │ │ │ ├── EasyUIGridModel.cs │ │ │ ├── EasyUITreeModel.cs │ │ │ ├── IModelAttribute.cs │ │ │ ├── LclMetadataProvider.cs │ │ │ ├── LclModelBinder.cs │ │ │ └── PagedListViewModel.cs │ │ ├── Result │ │ │ ├── LJsonResult.cs │ │ │ ├── NullJsonResult.cs │ │ │ ├── XmlDownloadResult.cs │ │ │ └── XmlResult.cs │ │ ├── Routes │ │ │ ├── GuidConstraint.cs │ │ │ ├── IRouteProvider.cs │ │ │ ├── IRoutePublisher.cs │ │ │ └── RoutePublisher.cs │ │ ├── Template │ │ │ ├── ITemplateService.cs │ │ │ ├── MemoryTemplateService.cs │ │ │ ├── TemplateRelevantAttribute.cs │ │ │ ├── TemplateService.cs │ │ │ └── TemplateServiceProvider.cs │ │ └── ViewEngines │ │ │ ├── HtmlView.cs │ │ │ ├── IPluginViewEngine.cs │ │ │ ├── IPluginViewEngineFactory.cs │ │ │ ├── PluginExtensions.cs │ │ │ ├── PluginRazorViewEngine.cs │ │ │ ├── PluginRuntimeViewEngine.cs │ │ │ ├── PluginWebFormViewEngine.cs │ │ │ └── Razor │ │ │ └── WebViewPage.cs │ ├── NotifyType.cs │ ├── PermissionKeys.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Security │ │ ├── AdminAuthorizeAttribute.cs │ │ ├── AdminValidateIpAddressAttribute.cs │ │ ├── FilePermissionHelper.cs │ │ ├── LCLHttpsRequirementAttribute.cs │ │ └── SslRequirement.cs │ ├── key.snk │ └── packages.config ├── LCL │ ├── Application │ │ └── ApplicationService.cs │ ├── Caching │ │ ├── CacheExtensions.cs │ │ ├── CacheManager.cs │ │ ├── CachingAttribute.cs │ │ ├── CachingMethod.cs │ │ ├── ICacheProvider.cs │ │ └── Memory │ │ │ └── MemoryCacheProvider.cs │ ├── Config │ │ ├── ConfigurationExtension.cs │ │ ├── ConfigurationHelper.cs │ │ ├── IDictionaryBasedConfig.cs │ │ ├── ISettings.cs │ │ ├── LConfig.cs │ │ └── Startup │ │ │ ├── ILclStartupConfiguration.cs │ │ │ ├── IModuleConfigurations.cs │ │ │ └── LclStartupConfigurationExtensions.cs │ ├── DisposableObject.cs │ ├── Domain │ │ ├── Entities │ │ │ ├── AggregateRoot.cs │ │ │ ├── Entity.cs │ │ │ ├── EntityExtensions.cs │ │ │ ├── EntityHelper.cs │ │ │ ├── IAggregateRoot.cs │ │ │ ├── IEntity.cs │ │ │ ├── IMayHaveTenant.cs │ │ │ ├── IMustHaveTenant.cs │ │ │ ├── IPassivable.cs │ │ │ ├── ISoftDelete.cs │ │ │ ├── LocaleStringResource.cs │ │ │ └── Setting.cs │ │ ├── Events │ │ │ ├── DomainEvent.cs │ │ │ ├── IDomainEvent.cs │ │ │ └── IDomainEventHandler.cs │ │ ├── Repositories │ │ │ ├── IRepository.cs │ │ │ ├── IRepositoryContext.cs │ │ │ ├── Repository.cs │ │ │ ├── RepositoryContext.cs │ │ │ ├── SortOrder.cs │ │ │ └── xml │ │ │ │ ├── IXMLRepositoryContext.cs │ │ │ │ ├── XMLRepository.cs │ │ │ │ └── XMLRepositoryContext.cs │ │ ├── Services │ │ │ ├── Configuration │ │ │ │ ├── ISettingService.cs │ │ │ │ └── SettingService.cs │ │ │ ├── DomainService.cs │ │ │ ├── IDomainService.cs │ │ │ ├── Language │ │ │ │ ├── ILocalizationService.cs │ │ │ │ ├── LocalizationExtensions.cs │ │ │ │ └── LocalizationService.cs │ │ │ └── Logging │ │ │ │ ├── EventLogger.cs │ │ │ │ ├── FileLogger.cs │ │ │ │ ├── Logger.cs │ │ │ │ ├── LoggerBase.cs │ │ │ │ └── TraceLogger.cs │ │ ├── Specifications │ │ │ ├── AndNotSpecification.cs │ │ │ ├── AndSpecification.cs │ │ │ ├── AnySpecification.cs │ │ │ ├── CompositeSpecification.cs │ │ │ ├── ExpressionFuncExtender.cs │ │ │ ├── ExpressionSpecification.cs │ │ │ ├── ICompositeSpecification.cs │ │ │ ├── ISpecification.cs │ │ │ ├── ISpecificationParser.cs │ │ │ ├── NoneSpecification.cs │ │ │ ├── NotSpecification.cs │ │ │ ├── OrSpecification.cs │ │ │ ├── ParameterRebinder.cs │ │ │ ├── Specification.cs │ │ │ ├── SpecificationException.cs │ │ │ └── SpecificationExtensions.cs │ │ ├── Uow │ │ │ ├── DataFilterConfiguration.cs │ │ │ ├── IUnitOfWork.cs │ │ │ ├── LclDataFilters.cs │ │ │ └── UnitOfWorkOptions.cs │ │ └── Values │ │ │ └── ValueObject.cs │ ├── Events │ │ ├── ActionDelegatedEventHandler.cs │ │ ├── Bus │ │ │ ├── EventBus.cs │ │ │ ├── IBus.cs │ │ │ ├── IEventBus.cs │ │ │ ├── MSMQBusOptions.cs │ │ │ └── MSMQEventBus.cs │ │ ├── EventAggregator.cs │ │ ├── HandlesAsynchronouslyAttribute.cs │ │ ├── IEvent.cs │ │ ├── IEventAggregator.cs │ │ └── IEventHandler.cs │ ├── Extensions │ │ ├── AssemblyExtensions.cs │ │ ├── ByteExtensions.cs │ │ ├── CollectionExtensions.cs │ │ ├── DataTableConvertJson.cs │ │ ├── DateTimeExtensions.cs │ │ ├── DictionaryEx.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EnumExt.cs │ │ ├── EnumerableExtensions.cs │ │ ├── ExceptionExtensions.cs │ │ ├── ExtensionsEx.cs │ │ ├── IQueryableExtensions.cs │ │ ├── LockExtensions.cs │ │ ├── MemberInfoExtensions.cs │ │ ├── ObjectExtensions.cs │ │ ├── SortByExtension.cs │ │ ├── StringExtensions.cs │ │ ├── SwithCaseExtension.cs │ │ ├── TypeExtensions.cs │ │ ├── WhereExtension.cs │ │ └── XmlExtensions.cs │ ├── GenericListTypeConverter.cs │ ├── GuidGenerator │ │ ├── IGuidGenerator.cs │ │ ├── RegularGuidGenerator.cs │ │ └── SequentialGuidGenerator.cs │ ├── IHandler.cs │ ├── IWebHelper.cs │ ├── Infrastructure │ │ ├── DependencyManagement │ │ │ ├── ContainerManager.cs │ │ │ ├── DependencyRegisterAttribute.cs │ │ │ └── IDependencyRegistrar.cs │ │ ├── EngineContext.cs │ │ ├── IEngine.cs │ │ ├── IStartupTask.cs │ │ ├── LEngine.cs │ │ ├── ReflectionHelper.cs │ │ ├── Singleton.cs │ │ └── TypeFinder │ │ │ ├── AppDomainTypeFinder.cs │ │ │ ├── ITypeFinder.cs │ │ │ └── WebAppTypeFinder.cs │ ├── LCL.csproj │ ├── LData │ │ ├── DbSetting.cs │ │ └── LIDbAccesser.cs │ ├── LException.cs │ ├── LResourceDisplayName.cs │ ├── LResult.cs │ ├── LVersion.cs │ ├── NameValue.cs │ ├── NamedTypeSelector.cs │ ├── ObjectMapping │ │ ├── IObjectMapper.cs │ │ └── NullObjectMapper.cs │ ├── PagedResult.cs │ ├── Plugins │ │ ├── BasePlugin.cs │ │ ├── IPlugin.cs │ │ ├── IPluginFinder.cs │ │ ├── IWidgetPlugin.cs │ │ ├── PluginDescriptor.cs │ │ ├── PluginExtensions.cs │ │ ├── PluginFileParser.cs │ │ ├── PluginFinder.cs │ │ └── PluginManager.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RF.cs │ ├── Reflection │ │ ├── AssemblyExtensions.cs │ │ ├── DynamicMemberHandle.cs │ │ ├── DynamicMethodHandle.cs │ │ ├── DynamicMethodHandlerFactory.cs │ │ ├── EmitContext.cs │ │ ├── ExpressionHelper.cs │ │ ├── MemberInfoExtension.cs │ │ ├── MethodCacheKey.cs │ │ ├── MethodCaller.cs │ │ ├── ObjectHelper.cs │ │ ├── Reflect.cs │ │ ├── ReflectionUtil.cs │ │ ├── TypeExtentions.cs │ │ └── TypeHelper.cs │ ├── Serialization │ │ ├── IObjectSerializer.cs │ │ ├── ObjectBinarySerializer.cs │ │ ├── ObjectDataContractSerializer.cs │ │ ├── ObjectJsonSerializer.cs │ │ ├── ObjectXmlSerializer.cs │ │ └── SerializationException.cs │ ├── ServiceModel │ │ ├── ChannelFactoryManager.cs │ │ ├── IApplicationServiceContract.cs │ │ └── ServiceProxy.cs │ ├── StyleCop.Cache │ ├── Threading │ │ ├── Async40.cs │ │ ├── AsyncHelper.cs │ │ ├── AsyncMultiActions.cs │ │ ├── ForeAsyncLoader.cs │ │ ├── IObservableActions.cs │ │ ├── IParallelActions.cs │ │ ├── ManagedThreadPool.cs │ │ ├── ParallelActions.cs │ │ ├── QueueServer.cs │ │ ├── SimpleRWLock!.cs │ │ └── SimpleRWLock.cs │ ├── Transactions │ │ ├── DistributedTransactionCoordinator.cs │ │ ├── ITransactionCoordinator.cs │ │ ├── SuppressedTransactionCoordinator.cs │ │ ├── TransactionCoordinator.cs │ │ └── TransactionCoordinatorFactory.cs │ ├── Utils.cs │ ├── WriteLockDisposable.cs │ ├── app.config │ ├── key.snk │ └── packages.config └── _Items │ ├── SharedAssemblyInfo.cs │ ├── SharedAssemblyVersionInfo.cs │ ├── _CodeSnippets │ ├── AggregateRoot.snippet │ ├── DbContext.snippet │ ├── DomainService.snippet │ ├── ModulePlugin.snippet │ ├── MyRepository.snippet │ └── ServiceLocator.snippet │ └── _ReadMe.txt ├── tools └── FxCop │ ├── CustomDictionary.xml │ ├── Engines │ ├── IntrospectionAnalysisEngine.dll │ └── IntrospectionForms.dll │ ├── FxCop.chm │ ├── FxCop.exe │ ├── FxCop.exe.config │ ├── FxCopCmd.exe │ ├── FxCopCmd.exe.config │ ├── FxCopCommon.dll │ ├── FxCopSdk.dll │ ├── FxCopUI.dll │ ├── MSSp3en.lex │ ├── MSSp3ena.lex │ ├── MSSpell3.dll │ ├── Microsoft.Cci.dll │ ├── Microsoft.VisualStudio.CodeAnalysis.Common.dll │ ├── Microsoft.VisualStudio.CodeAnalysis.Interop.dll │ ├── Microsoft.VisualStudio.CodeAnalysis.dll │ ├── Repository │ ├── Compatibility │ │ ├── Desktop2.0.xml │ │ ├── Desktop2.0SP1.xml │ │ ├── Desktop2.0SP2.xml │ │ ├── Desktop3.0.xml │ │ ├── Desktop3.0SP1.xml │ │ ├── Desktop3.0SP2.xml │ │ ├── Desktop3.5.xml │ │ └── Desktop3.5SP1.xml │ └── system32.bin │ ├── Rules │ ├── DesignRules.dll │ ├── GlobalizationRules.dll │ ├── InteroperabilityRules.dll │ ├── MobilityRules.dll │ ├── NamingRules.dll │ ├── PerformanceRules.dll │ ├── PortabilityRules.dll │ ├── SecurityRules.dll │ ├── SecurityTransparencyRules.dll │ └── UsageRules.dll │ ├── Xml │ ├── CodeAnalysisReport.xsl │ ├── CustomDictionary.xsd │ ├── FxCopReport.xsd │ ├── FxCopReport.xsl │ ├── FxCopReportExcludes.xsl │ ├── FxCopRichConsoleOutput.xsl │ └── VSConsoleOutput.xsl │ └── msdia100.dll └── 备份源代码.bat /LCLDemo/DeleteBin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/DeleteBin.bat -------------------------------------------------------------------------------- /LCLDemo/Documents/DomainEvents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/DomainEvents.jpg -------------------------------------------------------------------------------- /LCLDemo/Documents/EventAggregator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/EventAggregator.jpg -------------------------------------------------------------------------------- /LCLDemo/Documents/LCLDemo.eap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/LCLDemo.eap -------------------------------------------------------------------------------- /LCLDemo/Documents/demo_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/demo_index.png -------------------------------------------------------------------------------- /LCLDemo/Documents/demo_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/demo_list.png -------------------------------------------------------------------------------- /LCLDemo/Documents/demo_p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/demo_p.jpg -------------------------------------------------------------------------------- /LCLDemo/Documents/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/model.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/Implementation/OrderServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/Implementation/OrderServiceImpl.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/Implementation/ProductServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/Implementation/ProductServiceImpl.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/Implementation/UserServiceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/Implementation/UserServiceImpl.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/LCL.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/LCL.Application.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/key.snk -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/packages.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/EntityFramework/EFTestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/EntityFramework/EFTestContext.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/EntityFramework/RoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/EntityFramework/RoleRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/EntityFramework/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/EntityFramework/UserRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/LCL.Domain.Repositories.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/LCL.Domain.Repositories.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/XDocuments/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/XDocuments/UserRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/app.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain.Repositories/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/key.snk -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Events/GetUserOrdersEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Events/GetUserOrdersEvent.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Events/Handlers/GetUserOrdersEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Events/Handlers/GetUserOrdersEventHandler.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Events/Handlers/OrderConfirmedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Events/Handlers/OrderConfirmedEventHandler.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Events/Handlers/OrderDispatchedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Events/Handlers/OrderDispatchedEventHandler.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Events/Handlers/SendEmailHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Events/Handlers/SendEmailHandler.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Events/OrderConfirmedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Events/OrderConfirmedEvent.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Events/OrderDispatchedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Events/OrderDispatchedEvent.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/LCL.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/LCL.Domain.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/Address.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/Categorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/Categorization.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/Category.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/Product.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/Role.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/SalesLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/SalesLine.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/SalesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/SalesOrder.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/SalesOrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/SalesOrderStatus.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/ShoppingCart.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/ShoppingCartItem.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/User.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/UserRole.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/ValidationModel/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/ValidationModel/Role.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Model/ViewModels/ShoppingCartModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Model/ViewModels/ShoppingCartModels.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/ICategorizationRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/ICategorizationRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/ICategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/ICategoryRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/IProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/IProductRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/IRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/IRoleRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/ISalesOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/ISalesOrderRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/IShoppingCartItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/IShoppingCartItemRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/IShoppingCartRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/IShoppingCartRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/IUserRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Repositories/IUserRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Repositories/IUserRoleRepository.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Services/ILCLDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Services/ILCLDomainService.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Services/IOrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Services/IOrderService.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Services/IPostbackService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Services/IPostbackService.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Services/IProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Services/IProductService.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Services/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Services/IUserService.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Services/LDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Services/LDomainService.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Specifications/UserEmailEqualsSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Specifications/UserEmailEqualsSpecification.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Specifications/UserNameEqualsSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Specifications/UserNameEqualsSpecification.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Specifications/UserRolesSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Specifications/UserRolesSpecification.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/Specifications/UserStringEqualsSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/Specifications/UserStringEqualsSpecification.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/ValueObject/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/ValueObject/ValueObject.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/app.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Domain/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/key.snk -------------------------------------------------------------------------------- /LCLDemo/LCL.Infrastructure/Config/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Infrastructure/Config/AppConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Infrastructure/FaultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Infrastructure/FaultData.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Infrastructure/LCL.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Infrastructure/LCL.Infrastructure.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.Infrastructure/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Infrastructure/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Infrastructure/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Infrastructure/app.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Infrastructure/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Infrastructure/key.snk -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Connected Services/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Global.asax -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Global.asax.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Infrastructure/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Infrastructure/DependencyRegistrar.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/LCL.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/LCL.Services.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/OrderService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/OrderService.svc -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/OrderService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/OrderService.svc.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Plugins/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/ProductService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/ProductService.svc -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/ProductService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/ProductService.svc.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/ReadMe.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/UserService.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/UserService.svc -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/UserService.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/UserService.svc.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Web.Debug.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Web.Release.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Web.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/index.html -------------------------------------------------------------------------------- /LCLDemo/LCL.Services/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/packages.config -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/BootstrapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/BootstrapHelper.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapBreadcrumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapBreadcrumb.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapList.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapMenuForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapMenuForm.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapMvcMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapMvcMenu.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapMvcPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/BootstrapModels/BootstrapMvcPage.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/CustomDictionary.xml -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Enums/Buttons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/Enums/Buttons.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Enums/Forms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/Enums/Forms.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Enums/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/Enums/Images.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Enums/Menus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/Enums/Menus.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Enums/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/Enums/ProgressBar.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Enums/Tables.cs: -------------------------------------------------------------------------------- 1 | namespace LCL.Web.BootstrapMvc.Enums 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Enums/Typography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/Enums/Typography.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/LCL.Web.BootstrapMvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/LCL.Web.BootstrapMvc.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/ReadMe.txt -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/TagBuilderExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/TagBuilderExt.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/VisitedPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/VisitedPage.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/key.snk -------------------------------------------------------------------------------- /LCLDemo/LCL.Web.BootstrapMvc/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/packages.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/InstalledPlugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/InstalledPlugins.txt -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/LCLTestDB.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/LCLTestDB.sdf -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/Localization/installation.en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/Localization/installation.en.xml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/Localization/installation.zhs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/Localization/installation.zhs.xml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/Log/Error20170717.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/Log/Error20170717.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/Restful API 接口规范.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/Restful API 接口规范.doc -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/ProductImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/ProductImage.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/eftestcontext.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/eftestcontext.sql -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/favicon.ico -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Content/Site.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Content/bootstrap.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Content/bootstrap.min.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Content/myStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Content/myStyle.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Controllers/v1/EntityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Controllers/v1/EntityController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Controllers/v1/OrderServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Controllers/v1/OrderServiceController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Controllers/v1/ProductServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Controllers/v1/ProductServiceController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Controllers/v1/UserServiceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Controllers/v1/UserServiceController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Controllers/v2/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Global.asax -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Global.asax.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Infrastructure/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Infrastructure/DependencyRegistrar.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/LCL.WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/LCL.WebAPI.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Log/Info20170718.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Log/Info20170718.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Log/Info20170719.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Log/Info20170719.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Log/Info20170731.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Log/Info20170731.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Models/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Plugins/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Properties/PublishProfiles/CustomProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Properties/PublishProfiles/CustomProfile.pubxml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/ReadMe.txt -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/RestAPI.JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/RestAPI.JSON -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/bootstrap.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Scripts/swagger_lang_zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Scripts/swagger_lang_zh-cn.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/AccessKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/AccessKeyAttribute.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/ApplySchemaVendorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/ApplySchemaVendorFilter.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/CachingSwaggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/CachingSwaggerProvider.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/DocumentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/DocumentFilter.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/HttpHeaderFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/HttpHeaderFilter.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/MyControllerSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/MyControllerSelector.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/NamespaceHttpControllerSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/NamespaceHttpControllerSelector.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/SwaggerVersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/SwaggerVersionHelper.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Utility/UploadFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Utility/UploadFilter.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Views/Home/About.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Views/Web.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Web.Debug.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Web.Release.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Web.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/key.snk -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/packages.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/InstalledPlugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/InstalledPlugins.txt -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/LCLTestDB.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/LCLTestDB.sdf -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/Localization/installation.en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/Localization/installation.en.xml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/Localization/installation.zhs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/Localization/installation.zhs.xml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/Log/Error20170802.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/Log/Error20170802.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/ProductImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/ProductImage.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/eftestcontext.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/eftestcontext.sql -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/favicon.ico -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/ApplicationInsights.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Code/LCLMembershipProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Code/LCLMembershipProvider.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Code/MemberProviderEX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Code/MemberProviderEX.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Code/MyHtmlHelperExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Code/MyHtmlHelperExt.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Code/UrlHelperExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Code/UrlHelperExtension.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Connected Services/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Content/Site.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Content/bootstrap.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Content/bootstrap.min.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Content/docs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Content/docs.min.css -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Controllers/AccountController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Controllers/AdminController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Controllers/AdminController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Controllers/CommonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Controllers/CommonController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Controllers/HomeController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Controllers/LayoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Controllers/LayoutController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Controllers/ProductController.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Global.asax -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Global.asax.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Add.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Add2.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Admin_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Admin_32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Back.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Bag.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Cancel.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Category_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Category_32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/CopyTo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/CopyTo.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Delete.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Disable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Disable.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Edit.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Enable.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Login.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Logout.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Product_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Product_32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Products/ProductImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Products/ProductImage.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Role_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Role_32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/SalesOrder_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/SalesOrder_32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Save.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/ShoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/ShoppingCart.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/ShoppingCart256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/ShoppingCart256.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/ShoppingCart32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/ShoppingCart32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/ShoppingCart64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/ShoppingCart64.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Success_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Success_32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Update.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/User_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/User_32.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/afterlogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/afterlogo.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/arrows-ffffff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/arrows-ffffff.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/banner.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/byteartretail_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/byteartretail_logo.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/byteartretail_logo_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/byteartretail_logo_trans.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/category.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/close.gif -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/favicon.ico -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/footer.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/hard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/hard.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/header.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/logo.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/menu.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/menu_beforelogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/menu_beforelogo.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/newtovar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/newtovar.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/op.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/op.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/popular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/popular.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/shadow.png -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/spacer.gif -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/taling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/taling.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/taling_center.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/taling_center.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Images/trash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/trash.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Infrastructure/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Infrastructure/DependencyRegistrar.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Infrastructure/RouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Infrastructure/RouteProvider.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/LCL.WebMvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/LCL.WebMvc.csproj -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Error20170718.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Error20170718.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Error20170719.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Error20170719.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Error20170802.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Error20170802.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Info20170717.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Info20170717.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Info20170718.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Info20170718.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Info20170719.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Info20170719.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Info20170722.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Info20170722.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Info20170731.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Info20170731.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Info20170801.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Info20170801.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Log/Info20170802.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Log/Info20170802.log -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Models/AccountModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Models/AccountModels.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Models/UserAccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Models/UserAccountModel.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Plugins/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Properties/PublishProfiles/CustomProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Properties/PublishProfiles/CustomProfile.pubxml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/ReadMe.txt -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/bootstrap.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/respond.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Scripts/respond.min.js -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Account/Account.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Account/Account.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/AddCategory.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/AddCategory.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/AddProduct.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/AddProduct.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/AddRole.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/AddRole.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/AddUserAccount.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/AddUserAccount.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/Administration.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/Administration.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/Categories.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/Categories.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/EditCategory.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/EditCategory.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/EditProduct.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/EditProduct.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/EditRole.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/EditRole.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/EditUserAccount.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/EditUserAccount.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/Products.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/Products.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/Roles.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/Roles.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/SalesOrder.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/SalesOrder.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/SalesOrders.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/SalesOrders.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Admin/UserAccounts.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Admin/UserAccounts.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Common/Footer.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Common/LanguageSelector.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Common/PageNotFound.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Common/PageNotFound.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Common/Sitemap.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Common/Sitemap.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Common/SuccessPage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Common/SuccessPage.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Home/About.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Home/SalesOrder.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Home/SalesOrder.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Home/SalesOrders.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Home/SalesOrders.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Home/ShoppingCart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Home/ShoppingCart.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Product/Category.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Product/Category.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Product/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Product/Index.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Product/ProductInfo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Product/ProductInfo.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Shared/CategoriesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Shared/CategoriesPartial.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Shared/FeaturedProductsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Shared/FeaturedProductsPartial.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Shared/ProductsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Shared/ProductsPartial.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/Web.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Web.Debug.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Web.Release.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Web.config -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/favicon.ico -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/key.snk -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/packages.config -------------------------------------------------------------------------------- /LCLDemo/LCLWebMvcDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCLWebMvcDemo.sln -------------------------------------------------------------------------------- /LCLDemo/LCLWebMvcDemo.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCLWebMvcDemo.v12.suo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/README.md -------------------------------------------------------------------------------- /Source/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/.nuget/NuGet.Config -------------------------------------------------------------------------------- /Source/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/.nuget/NuGet.exe -------------------------------------------------------------------------------- /Source/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Source/.nuget/pack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/.nuget/pack.ps1 -------------------------------------------------------------------------------- /Source/.nuget/pushNupkg.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/.nuget/pushNupkg.bat -------------------------------------------------------------------------------- /Source/.nuget/发布到nuget官网.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/.nuget/发布到nuget官网.bat -------------------------------------------------------------------------------- /Source/Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Build.bat -------------------------------------------------------------------------------- /Source/DeleteBin.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/DeleteBin.bat -------------------------------------------------------------------------------- /Source/Document/Apache20.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Document/Apache20.rtf -------------------------------------------------------------------------------- /Source/Document/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Document/StyleCop.Cache -------------------------------------------------------------------------------- /Source/Document/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Document/logo.ico -------------------------------------------------------------------------------- /Source/Document/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Document/logo.jpg -------------------------------------------------------------------------------- /Source/LCL.FxCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/LCL.FxCop -------------------------------------------------------------------------------- /Source/LCL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/LCL.sln -------------------------------------------------------------------------------- /Source/Packages.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Packages.dgml -------------------------------------------------------------------------------- /Source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/README.md -------------------------------------------------------------------------------- /Source/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Settings.StyleCop -------------------------------------------------------------------------------- /Source/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/StyleCop.Cache -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Events/GetUserOrdersEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Events/GetUserOrdersEvent.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Events/OrderConfirmedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Events/OrderConfirmedEvent.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Events/OrderDispatchedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Events/OrderDispatchedEvent.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/Address.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/Categorization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/Categorization.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/Category.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/Product.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/Role.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/SalesLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/SalesLine.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/SalesOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/SalesOrder.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/SalesOrderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/SalesOrderStatus.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/ShoppingCart.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/ShoppingCartItem.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/User.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Model/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Model/UserRole.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Repositories/IRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Repositories/IRoleRepository.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Repositories/IUserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Repositories/IUserRepository.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Services/FaultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Services/FaultData.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Domain/Services/OrderService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Domain/Services/OrderService.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ACore/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ACore/Helper.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/App.config -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Caching/MemoryCacheManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Caching/MemoryCacheManagerTests.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/ComponentModel/GenericListTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/ComponentModel/GenericListTypeConverter.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Domain/Events/Bus/BusTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Domain/Events/Bus/BusTest.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Domain/Events/TestDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Domain/Events/TestDomainEvent.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Domain/Repositories/EFRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Domain/Repositories/EFRepositoryTests.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Domain/Repositories/XMLRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Domain/Repositories/XMLRepositoryTests.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Domain/Services/ServicesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Domain/Services/ServicesTest.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Extensions/ObjectExtension_Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Extensions/ObjectExtension_Test.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Extensions/StringExtensions_Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Extensions/StringExtensions_Tests.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Fakes/FakeTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Fakes/FakeTypeFinder.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Fakes/TypeFindingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Fakes/TypeFindingBase.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Infrastructuretest/SingletonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Infrastructuretest/SingletonTests.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Infrastructuretest/TypeFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Infrastructuretest/TypeFinderTests.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/LCL.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/LCL.Tests.csproj -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/StyleCop.Cache -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/TestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/TestExtensions.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/TestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/TestsBase.cs -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/olog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/olog.txt -------------------------------------------------------------------------------- /Source/Tests/LCL.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Tests/LCL.Tests/packages.config -------------------------------------------------------------------------------- /Source/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/appveyor.yml -------------------------------------------------------------------------------- /Source/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/common.props -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/AutoMapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/AutoMapAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/AutoMapAttributeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/AutoMapAttributeBase.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/AutoMapExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/AutoMapExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/AutoMapFromAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/AutoMapFromAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/AutoMapToAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/AutoMapToAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/AutoMapperConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/AutoMapperConfigurationExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/AutoMapperObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/AutoMapperObjectMapper.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/DependencyRegistrar.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/LCL.AutoMapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/LCL.AutoMapper.csproj -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.AutoMapper/packages.config -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/DependencyRegistrar.cs -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/IAbpRedisCacheDatabaseProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/IAbpRedisCacheDatabaseProvider.cs -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/IRedisCacheSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/IRedisCacheSerializer.cs -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/LCL.RedisCache.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/LCL.RedisCache.csproj -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/LclRedisCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/LclRedisCache.cs -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/RedisDatabaseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/RedisDatabaseExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/app.config -------------------------------------------------------------------------------- /Source/src/LCL.RedisCache/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.RedisCache/packages.config -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.EntityFramework/EfStartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.EntityFramework/EfStartupTask.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.EntityFramework/LclDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.EntityFramework/LclDbContext.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.EntityFramework/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.EntityFramework/StyleCop.Cache -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.EntityFramework/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.EntityFramework/key.snk -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.EntityFramework/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.EntityFramework/packages.config -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/DependencyRegistrar.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/EfStartUpTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/EfStartUpTask.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/IMongoDBRepositoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/IMongoDBRepositoryContext.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/MongoDBRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/MongoDBRepository.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/MongoDBRepositoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/MongoDBRepositoryContext.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/StyleCop.Cache -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/key.snk -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/packages.config -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/DatabaseSessionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/DatabaseSessionFactory.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/DependencyRegistrar.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/INHibernateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/INHibernateContext.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/NHibernateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/NHibernateContext.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/NHibernateRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/NHibernateRepository.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/packages.config -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/.vs/LCL.VSIXProject/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/.vs/LCL.VSIXProject/v15/.suo -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Apache20.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Apache20.rtf -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Commands/CodeSnippetsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Commands/CodeSnippetsCommand.cs -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Commands/FileHeaderCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Commands/FileHeaderCommands.cs -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Commands/ProjectTemplateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Commands/ProjectTemplateCommand.cs -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Commands/VSContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Commands/VSContent.cs -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Helper.cs -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Key.snk -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/LCL.VSIXProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/LCL.VSIXProject.csproj -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Resources/FileHeaderCommands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Resources/FileHeaderCommands.png -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Resources/ProjectTemplateCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Resources/ProjectTemplateCommand.png -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Templates/ItemTemplates/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/Templates/ProjectTemplates/index.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/VSPackage.resx -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/VSPackagePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/VSPackagePackage.cs -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/VSPackagePackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/VSPackagePackage.vsct -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/_CodeSnippets/LCL_DbContext.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/_CodeSnippets/LCL_DbContext.snippet -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/_CodeSnippets/LCL_ModulePlugin.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/_CodeSnippets/LCL_ModulePlugin.snippet -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/_CodeSnippets/LCL_MyRepository.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/_CodeSnippets/LCL_MyRepository.snippet -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/_ReadMe.txt: -------------------------------------------------------------------------------- 1 | http://blog.csdn.net/slowlifes/article/details/53130951 -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/index.html -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/logo.ico -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/logo.jpg -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/packages.config -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Source/src/LCL.VSIXProject/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/stylesheet.css -------------------------------------------------------------------------------- /Source/src/LCL.Web/Configuration/ILclMvcConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Configuration/ILclMvcConfiguration.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Configuration/LclMvcConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Configuration/LclMvcConfigurationExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/DependencyRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/DependencyRegistrar.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Fakes/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Fakes/Extensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Fakes/FakeHttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Fakes/FakeHttpContext.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Fakes/FakeHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Fakes/FakeHttpRequest.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Fakes/FakeHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Fakes/FakeHttpResponse.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Fakes/FakeHttpSessionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Fakes/FakeHttpSessionState.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Fakes/FakeIdentity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Fakes/FakeIdentity.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Fakes/FakePrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Fakes/FakePrincipal.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/LCL.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/LCL.Web.csproj -------------------------------------------------------------------------------- /Source/src/LCL.Web/Localization/ILocalizedModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Localization/ILocalizedModel.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Localization/ILocalizedModelLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Localization/ILocalizedModelLocal.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Localization/LocalizedRoute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Localization/LocalizedRoute.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Localization/LocalizedRouteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Localization/LocalizedRouteExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Localization/LocalizedString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Localization/LocalizedString.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Localization/Localizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Localization/Localizer.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Menu/SiteMapNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Menu/SiteMapNode.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Menu/XmlSiteMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Menu/XmlSiteMap.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Controllers/LController!.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Controllers/LController!.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Controllers/LController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Controllers/LController.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Extensions/HtmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Extensions/HtmlExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/AddOrEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/AddOrEditViewModel.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/BaseLclModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/BaseLclModel.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/DeleteConfirmationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/DeleteConfirmationModel.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/EasyUIGridModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/EasyUIGridModel.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/EasyUITreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/EasyUITreeModel.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/IModelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/IModelAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/LclMetadataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/LclMetadataProvider.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/LclModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/LclModelBinder.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Models/PagedListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Models/PagedListViewModel.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Result/LJsonResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Result/LJsonResult.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Result/NullJsonResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Result/NullJsonResult.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Result/XmlDownloadResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Result/XmlDownloadResult.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Result/XmlResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Result/XmlResult.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Routes/GuidConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Routes/GuidConstraint.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Routes/IRouteProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Routes/IRouteProvider.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Routes/IRoutePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Routes/IRoutePublisher.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Routes/RoutePublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Routes/RoutePublisher.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Template/ITemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Template/ITemplateService.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Template/MemoryTemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Template/MemoryTemplateService.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Template/TemplateRelevantAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Template/TemplateRelevantAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Template/TemplateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Template/TemplateService.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/Template/TemplateServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/Template/TemplateServiceProvider.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/HtmlView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/HtmlView.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/IPluginViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/IPluginViewEngine.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/IPluginViewEngineFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/IPluginViewEngineFactory.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/PluginExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/PluginExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/PluginRazorViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/PluginRazorViewEngine.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/PluginRuntimeViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/PluginRuntimeViewEngine.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/PluginWebFormViewEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/PluginWebFormViewEngine.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Mvc/ViewEngines/Razor/WebViewPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Mvc/ViewEngines/Razor/WebViewPage.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/NotifyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/NotifyType.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/PermissionKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/PermissionKeys.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Security/AdminAuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Security/AdminAuthorizeAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Security/AdminValidateIpAddressAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Security/AdminValidateIpAddressAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Security/FilePermissionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Security/FilePermissionHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Security/LCLHttpsRequirementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Security/LCLHttpsRequirementAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/Security/SslRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/Security/SslRequirement.cs -------------------------------------------------------------------------------- /Source/src/LCL.Web/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/key.snk -------------------------------------------------------------------------------- /Source/src/LCL.Web/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/packages.config -------------------------------------------------------------------------------- /Source/src/LCL/Application/ApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Application/ApplicationService.cs -------------------------------------------------------------------------------- /Source/src/LCL/Caching/CacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Caching/CacheExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Caching/CacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Caching/CacheManager.cs -------------------------------------------------------------------------------- /Source/src/LCL/Caching/CachingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Caching/CachingAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL/Caching/CachingMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Caching/CachingMethod.cs -------------------------------------------------------------------------------- /Source/src/LCL/Caching/ICacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Caching/ICacheProvider.cs -------------------------------------------------------------------------------- /Source/src/LCL/Caching/Memory/MemoryCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Caching/Memory/MemoryCacheProvider.cs -------------------------------------------------------------------------------- /Source/src/LCL/Config/ConfigurationExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Config/ConfigurationExtension.cs -------------------------------------------------------------------------------- /Source/src/LCL/Config/ConfigurationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Config/ConfigurationHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Config/IDictionaryBasedConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Config/IDictionaryBasedConfig.cs -------------------------------------------------------------------------------- /Source/src/LCL/Config/ISettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Config/ISettings.cs -------------------------------------------------------------------------------- /Source/src/LCL/Config/LConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Config/LConfig.cs -------------------------------------------------------------------------------- /Source/src/LCL/Config/Startup/ILclStartupConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Config/Startup/ILclStartupConfiguration.cs -------------------------------------------------------------------------------- /Source/src/LCL/Config/Startup/IModuleConfigurations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Config/Startup/IModuleConfigurations.cs -------------------------------------------------------------------------------- /Source/src/LCL/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/DisposableObject.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/AggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/AggregateRoot.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/Entity.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/EntityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/EntityExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/EntityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/EntityHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/IAggregateRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/IAggregateRoot.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/IEntity.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/IMayHaveTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/IMayHaveTenant.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/IMustHaveTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/IMustHaveTenant.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/IPassivable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/IPassivable.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/ISoftDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/ISoftDelete.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/LocaleStringResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/LocaleStringResource.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Entities/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Entities/Setting.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Events/DomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Events/DomainEvent.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Events/IDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Events/IDomainEvent.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Events/IDomainEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Events/IDomainEventHandler.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/IRepository.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/IRepositoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/IRepositoryContext.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/Repository.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/RepositoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/RepositoryContext.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/SortOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/SortOrder.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/xml/IXMLRepositoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/xml/IXMLRepositoryContext.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/xml/XMLRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/xml/XMLRepository.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Repositories/xml/XMLRepositoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Repositories/xml/XMLRepositoryContext.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Configuration/ISettingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Configuration/ISettingService.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Configuration/SettingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Configuration/SettingService.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/DomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/DomainService.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/IDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/IDomainService.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Language/ILocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Language/ILocalizationService.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Language/LocalizationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Language/LocalizationExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Language/LocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Language/LocalizationService.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Logging/EventLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Logging/EventLogger.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Logging/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Logging/FileLogger.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Logging/Logger.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Logging/LoggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Logging/LoggerBase.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Services/Logging/TraceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Logging/TraceLogger.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/AndNotSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/AndNotSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/AndSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/AndSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/AnySpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/AnySpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/CompositeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/CompositeSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/ExpressionFuncExtender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/ExpressionFuncExtender.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/ExpressionSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/ExpressionSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/ICompositeSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/ICompositeSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/ISpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/ISpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/ISpecificationParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/ISpecificationParser.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/NoneSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/NoneSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/NotSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/NotSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/OrSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/OrSpecification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/ParameterRebinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/ParameterRebinder.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/Specification.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/SpecificationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/SpecificationException.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Specifications/SpecificationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Specifications/SpecificationExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Uow/DataFilterConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Uow/DataFilterConfiguration.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Uow/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Uow/IUnitOfWork.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Uow/LclDataFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Uow/LclDataFilters.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Uow/UnitOfWorkOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Uow/UnitOfWorkOptions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Domain/Values/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Values/ValueObject.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/ActionDelegatedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/ActionDelegatedEventHandler.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/Bus/EventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/Bus/EventBus.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/Bus/IBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/Bus/IBus.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/Bus/IEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/Bus/IEventBus.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/Bus/MSMQBusOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/Bus/MSMQBusOptions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/Bus/MSMQEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/Bus/MSMQEventBus.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/EventAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/EventAggregator.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/HandlesAsynchronouslyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/HandlesAsynchronouslyAttribute.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/IEvent.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/IEventAggregator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/IEventAggregator.cs -------------------------------------------------------------------------------- /Source/src/LCL/Events/IEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Events/IEventHandler.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/AssemblyExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/ByteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/ByteExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/DataTableConvertJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/DataTableConvertJson.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/DictionaryEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/DictionaryEx.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/EnumExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/EnumExt.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/ExtensionsEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/ExtensionsEx.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/IQueryableExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/LockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/LockExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/MemberInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/MemberInfoExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/ObjectExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/SortByExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/SortByExtension.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/SwithCaseExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/SwithCaseExtension.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/WhereExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/WhereExtension.cs -------------------------------------------------------------------------------- /Source/src/LCL/Extensions/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/XmlExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/GenericListTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/GenericListTypeConverter.cs -------------------------------------------------------------------------------- /Source/src/LCL/GuidGenerator/IGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/GuidGenerator/IGuidGenerator.cs -------------------------------------------------------------------------------- /Source/src/LCL/GuidGenerator/RegularGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/GuidGenerator/RegularGuidGenerator.cs -------------------------------------------------------------------------------- /Source/src/LCL/GuidGenerator/SequentialGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/GuidGenerator/SequentialGuidGenerator.cs -------------------------------------------------------------------------------- /Source/src/LCL/IHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/IHandler.cs -------------------------------------------------------------------------------- /Source/src/LCL/IWebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/IWebHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/EngineContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/EngineContext.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/IEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/IEngine.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/IStartupTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/IStartupTask.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/LEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/LEngine.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/ReflectionHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/Singleton.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/TypeFinder/AppDomainTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/TypeFinder/AppDomainTypeFinder.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/TypeFinder/ITypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/TypeFinder/ITypeFinder.cs -------------------------------------------------------------------------------- /Source/src/LCL/Infrastructure/TypeFinder/WebAppTypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Infrastructure/TypeFinder/WebAppTypeFinder.cs -------------------------------------------------------------------------------- /Source/src/LCL/LCL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/LCL.csproj -------------------------------------------------------------------------------- /Source/src/LCL/LData/DbSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/LData/DbSetting.cs -------------------------------------------------------------------------------- /Source/src/LCL/LData/LIDbAccesser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/LData/LIDbAccesser.cs -------------------------------------------------------------------------------- /Source/src/LCL/LException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/LException.cs -------------------------------------------------------------------------------- /Source/src/LCL/LResourceDisplayName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/LResourceDisplayName.cs -------------------------------------------------------------------------------- /Source/src/LCL/LResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/LResult.cs -------------------------------------------------------------------------------- /Source/src/LCL/LVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/LVersion.cs -------------------------------------------------------------------------------- /Source/src/LCL/NameValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/NameValue.cs -------------------------------------------------------------------------------- /Source/src/LCL/NamedTypeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/NamedTypeSelector.cs -------------------------------------------------------------------------------- /Source/src/LCL/ObjectMapping/IObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/ObjectMapping/IObjectMapper.cs -------------------------------------------------------------------------------- /Source/src/LCL/ObjectMapping/NullObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/ObjectMapping/NullObjectMapper.cs -------------------------------------------------------------------------------- /Source/src/LCL/PagedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/PagedResult.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/BasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/BasePlugin.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/IPlugin.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/IPluginFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/IPluginFinder.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/IWidgetPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/IWidgetPlugin.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/PluginDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/PluginDescriptor.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/PluginExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/PluginExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/PluginFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/PluginFileParser.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/PluginFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/PluginFinder.cs -------------------------------------------------------------------------------- /Source/src/LCL/Plugins/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Plugins/PluginManager.cs -------------------------------------------------------------------------------- /Source/src/LCL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/LCL/RF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/RF.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/AssemblyExtensions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/DynamicMemberHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/DynamicMemberHandle.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/DynamicMethodHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/DynamicMethodHandle.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/DynamicMethodHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/DynamicMethodHandlerFactory.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/EmitContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/EmitContext.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/ExpressionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/ExpressionHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/MemberInfoExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/MemberInfoExtension.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/MethodCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/MethodCacheKey.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/MethodCaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/MethodCaller.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/ObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/ObjectHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/Reflect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/Reflect.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/ReflectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/ReflectionUtil.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/TypeExtentions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/TypeExtentions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Reflection/TypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/TypeHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Serialization/IObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Serialization/IObjectSerializer.cs -------------------------------------------------------------------------------- /Source/src/LCL/Serialization/ObjectBinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Serialization/ObjectBinarySerializer.cs -------------------------------------------------------------------------------- /Source/src/LCL/Serialization/ObjectDataContractSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Serialization/ObjectDataContractSerializer.cs -------------------------------------------------------------------------------- /Source/src/LCL/Serialization/ObjectJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Serialization/ObjectJsonSerializer.cs -------------------------------------------------------------------------------- /Source/src/LCL/Serialization/ObjectXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Serialization/ObjectXmlSerializer.cs -------------------------------------------------------------------------------- /Source/src/LCL/Serialization/SerializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Serialization/SerializationException.cs -------------------------------------------------------------------------------- /Source/src/LCL/ServiceModel/ChannelFactoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/ServiceModel/ChannelFactoryManager.cs -------------------------------------------------------------------------------- /Source/src/LCL/ServiceModel/IApplicationServiceContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/ServiceModel/IApplicationServiceContract.cs -------------------------------------------------------------------------------- /Source/src/LCL/ServiceModel/ServiceProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/ServiceModel/ServiceProxy.cs -------------------------------------------------------------------------------- /Source/src/LCL/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/StyleCop.Cache -------------------------------------------------------------------------------- /Source/src/LCL/Threading/Async40.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/Async40.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/AsyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/AsyncHelper.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/AsyncMultiActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/AsyncMultiActions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/ForeAsyncLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/ForeAsyncLoader.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/IObservableActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/IObservableActions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/IParallelActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/IParallelActions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/ManagedThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/ManagedThreadPool.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/ParallelActions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/ParallelActions.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/QueueServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/QueueServer.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/SimpleRWLock!.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/SimpleRWLock!.cs -------------------------------------------------------------------------------- /Source/src/LCL/Threading/SimpleRWLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/SimpleRWLock.cs -------------------------------------------------------------------------------- /Source/src/LCL/Transactions/DistributedTransactionCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Transactions/DistributedTransactionCoordinator.cs -------------------------------------------------------------------------------- /Source/src/LCL/Transactions/ITransactionCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Transactions/ITransactionCoordinator.cs -------------------------------------------------------------------------------- /Source/src/LCL/Transactions/SuppressedTransactionCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Transactions/SuppressedTransactionCoordinator.cs -------------------------------------------------------------------------------- /Source/src/LCL/Transactions/TransactionCoordinator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Transactions/TransactionCoordinator.cs -------------------------------------------------------------------------------- /Source/src/LCL/Transactions/TransactionCoordinatorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Transactions/TransactionCoordinatorFactory.cs -------------------------------------------------------------------------------- /Source/src/LCL/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Utils.cs -------------------------------------------------------------------------------- /Source/src/LCL/WriteLockDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/WriteLockDisposable.cs -------------------------------------------------------------------------------- /Source/src/LCL/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/app.config -------------------------------------------------------------------------------- /Source/src/LCL/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/key.snk -------------------------------------------------------------------------------- /Source/src/LCL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/packages.config -------------------------------------------------------------------------------- /Source/src/_Items/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /Source/src/_Items/SharedAssemblyVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/SharedAssemblyVersionInfo.cs -------------------------------------------------------------------------------- /Source/src/_Items/_CodeSnippets/AggregateRoot.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_CodeSnippets/AggregateRoot.snippet -------------------------------------------------------------------------------- /Source/src/_Items/_CodeSnippets/DbContext.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_CodeSnippets/DbContext.snippet -------------------------------------------------------------------------------- /Source/src/_Items/_CodeSnippets/DomainService.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_CodeSnippets/DomainService.snippet -------------------------------------------------------------------------------- /Source/src/_Items/_CodeSnippets/ModulePlugin.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_CodeSnippets/ModulePlugin.snippet -------------------------------------------------------------------------------- /Source/src/_Items/_CodeSnippets/MyRepository.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_CodeSnippets/MyRepository.snippet -------------------------------------------------------------------------------- /Source/src/_Items/_CodeSnippets/ServiceLocator.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_CodeSnippets/ServiceLocator.snippet -------------------------------------------------------------------------------- /Source/src/_Items/_ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_ReadMe.txt -------------------------------------------------------------------------------- /Source/tools/FxCop/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/CustomDictionary.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Engines/IntrospectionAnalysisEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Engines/IntrospectionAnalysisEngine.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Engines/IntrospectionForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Engines/IntrospectionForms.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCop.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCop.chm -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCop.exe -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCop.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCop.exe.config -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCopCmd.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopCmd.exe -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCopCmd.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopCmd.exe.config -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCopCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopCommon.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCopSdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopSdk.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/FxCopUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopUI.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/MSSp3en.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/MSSp3en.lex -------------------------------------------------------------------------------- /Source/tools/FxCop/MSSp3ena.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/MSSp3ena.lex -------------------------------------------------------------------------------- /Source/tools/FxCop/MSSpell3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/MSSpell3.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Microsoft.Cci.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Microsoft.Cci.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.Common.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop2.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop2.0.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop2.0SP1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop2.0SP1.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop2.0SP2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop2.0SP2.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop3.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop3.0.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop3.0SP1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop3.0SP1.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop3.0SP2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop3.0SP2.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop3.5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop3.5.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/Compatibility/Desktop3.5SP1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/Compatibility/Desktop3.5SP1.xml -------------------------------------------------------------------------------- /Source/tools/FxCop/Repository/system32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/system32.bin -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/DesignRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/DesignRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/GlobalizationRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/GlobalizationRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/InteroperabilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/InteroperabilityRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/MobilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/MobilityRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/NamingRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/NamingRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/PerformanceRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/PerformanceRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/PortabilityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/PortabilityRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/SecurityRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/SecurityRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/SecurityTransparencyRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/SecurityTransparencyRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Rules/UsageRules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/UsageRules.dll -------------------------------------------------------------------------------- /Source/tools/FxCop/Xml/CodeAnalysisReport.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Xml/CodeAnalysisReport.xsl -------------------------------------------------------------------------------- /Source/tools/FxCop/Xml/CustomDictionary.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Xml/CustomDictionary.xsd -------------------------------------------------------------------------------- /Source/tools/FxCop/Xml/FxCopReport.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Xml/FxCopReport.xsd -------------------------------------------------------------------------------- /Source/tools/FxCop/Xml/FxCopReport.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Xml/FxCopReport.xsl -------------------------------------------------------------------------------- /Source/tools/FxCop/Xml/FxCopReportExcludes.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Xml/FxCopReportExcludes.xsl -------------------------------------------------------------------------------- /Source/tools/FxCop/Xml/FxCopRichConsoleOutput.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Xml/FxCopRichConsoleOutput.xsl -------------------------------------------------------------------------------- /Source/tools/FxCop/Xml/VSConsoleOutput.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Xml/VSConsoleOutput.xsl -------------------------------------------------------------------------------- /Source/tools/FxCop/msdia100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/msdia100.dll -------------------------------------------------------------------------------- /Source/备份源代码.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/备份源代码.bat --------------------------------------------------------------------------------