发邮件给我们:minguiluo@163.com
8 |├── LCLDemo
├── LCL.Services
│ ├── ReadMe.txt
│ ├── Plugins
│ │ └── index.htm
│ ├── Connected Services
│ │ └── index.htm
│ ├── Global.asax
│ ├── OrderService.svc
│ ├── UserService.svc
│ ├── ProductService.svc
│ ├── Infrastructure
│ │ └── DependencyRegistrar.cs
│ ├── index.html
│ ├── Properties
│ │ └── PublishProfiles
│ │ │ └── CustomProfile.pubxml
│ └── Global.asax.cs
├── LCL.WebAPI
│ ├── App_Data
│ │ ├── index.htm
│ │ ├── LCLTestDB.sdf
│ │ ├── Restful API 接口规范.doc
│ │ ├── demo_data
│ │ │ ├── favicon.ico
│ │ │ ├── eftestcontext.sql
│ │ │ └── Products
│ │ │ │ ├── ProductImage.png
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ ├── InstalledPlugins.txt
│ │ └── Localization
│ │ │ └── installation.en.xml
│ ├── Models
│ │ └── index.htm
│ ├── Plugins
│ │ └── index.htm
│ ├── Controllers
│ │ ├── v2
│ │ │ └── index.htm
│ │ └── HomeController.cs
│ ├── Views
│ │ ├── _ViewStart.cshtml
│ │ └── Home
│ │ │ ├── About.cshtml
│ │ │ └── Contact.cshtml
│ ├── key.snk
│ ├── Content
│ │ ├── myStyle.css
│ │ └── Site.css
│ ├── Global.asax
│ ├── App_Start
│ │ ├── SwaggerConfig.cs
│ │ └── FilterConfig.cs
│ ├── Infrastructure
│ │ └── DependencyRegistrar.cs
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── Log
│ │ └── Info20170731.log
│ ├── Utility
│ │ └── ApplySchemaVendorFilter.cs
│ ├── ReadMe.txt
│ └── Properties
│ │ └── PublishProfiles
│ │ └── CustomProfile.pubxml
├── LCL.WebMvc
│ ├── App_Data
│ │ ├── index.htm
│ │ ├── LCLTestDB.sdf
│ │ ├── demo_data
│ │ │ ├── favicon.ico
│ │ │ ├── eftestcontext.sql
│ │ │ └── Products
│ │ │ │ ├── ProductImage.png
│ │ │ │ ├── 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
│ │ │ │ ├── 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
│ │ ├── InstalledPlugins.txt
│ │ └── Localization
│ │ │ └── installation.en.xml
│ ├── Plugins
│ │ └── index.htm
│ ├── Connected Services
│ │ └── index.htm
│ ├── Views
│ │ ├── Common
│ │ │ ├── Footer.cshtml
│ │ │ ├── Sitemap.cshtml
│ │ │ ├── LanguageSelector.cshtml
│ │ │ └── PageNotFound.cshtml
│ │ ├── _ViewStart.cshtml
│ │ ├── Shared
│ │ │ ├── Error.cshtml
│ │ │ └── CategoriesPartial.cshtml
│ │ ├── Admin
│ │ │ └── Administration.cshtml
│ │ ├── Home
│ │ │ └── Contact.cshtml
│ │ └── Product
│ │ │ ├── Index.cshtml
│ │ │ └── Category.cshtml
│ ├── key.snk
│ ├── favicon.ico
│ ├── Images
│ │ ├── op.jpg
│ │ ├── Add.png
│ │ ├── Add2.png
│ │ ├── Back.png
│ │ ├── Bag.png
│ │ ├── Edit.png
│ │ ├── Login.png
│ │ ├── Save.png
│ │ ├── close.gif
│ │ ├── hard.jpg
│ │ ├── logo.jpg
│ │ ├── menu.jpg
│ │ ├── trash.jpg
│ │ ├── Cancel.png
│ │ ├── CopyTo.png
│ │ ├── Delete.png
│ │ ├── Disable.png
│ │ ├── Enable.png
│ │ ├── Logout.png
│ │ ├── Role_32.png
│ │ ├── Update.png
│ │ ├── User_32.png
│ │ ├── banner.jpg
│ │ ├── favicon.ico
│ │ ├── footer.jpg
│ │ ├── header.jpg
│ │ ├── popular.jpg
│ │ ├── shadow.png
│ │ ├── spacer.gif
│ │ ├── taling.jpg
│ │ ├── Admin_32.png
│ │ ├── Product_32.png
│ │ ├── Success_32.png
│ │ ├── afterlogo.jpg
│ │ ├── category.jpg
│ │ ├── newtovar.jpg
│ │ ├── Category_32.png
│ │ ├── ShoppingCart.png
│ │ ├── SalesOrder_32.png
│ │ ├── ShoppingCart256.png
│ │ ├── ShoppingCart32.png
│ │ ├── ShoppingCart64.png
│ │ ├── arrows-ffffff.png
│ │ ├── menu_beforelogo.jpg
│ │ ├── taling_center.jpg
│ │ ├── byteartretail_logo.png
│ │ ├── Products
│ │ │ ├── ProductImage.png
│ │ │ ├── 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
│ │ │ ├── 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
│ │ └── byteartretail_logo_trans.png
│ ├── Global.asax
│ ├── Infrastructure
│ │ └── DependencyRegistrar.cs
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── App_Start
│ │ └── FilterConfig.cs
│ ├── Log
│ │ ├── Info20170717.log
│ │ ├── Info20170718.log
│ │ └── Info20170719.log
│ ├── Code
│ │ └── UrlHelperExtension.cs
│ ├── Models
│ │ └── AccountModels.cs
│ ├── Content
│ │ └── Site.css
│ └── Properties
│ │ └── PublishProfiles
│ │ └── CustomProfile.pubxml
├── LCL.Web.BootstrapMvc
│ ├── Enums
│ │ ├── Tables.cs
│ │ ├── Forms.cs
│ │ ├── Images.cs
│ │ └── Menus.cs
│ ├── key.snk
│ ├── packages.config
│ ├── CustomDictionary.xml
│ └── ReadMe.txt
├── Documents
│ ├── model.jpg
│ ├── LCLDemo.eap
│ ├── demo_p.jpg
│ ├── demo_index.png
│ ├── demo_list.png
│ ├── DomainEvents.jpg
│ └── EventAggregator.jpg
├── LCL.Domain
│ ├── key.snk
│ ├── ValueObject
│ │ └── ValueObject.cs
│ ├── Repositories
│ │ ├── ICategoryRepository.cs
│ │ ├── IRoleRepository.cs
│ │ ├── IShoppingCartRepository.cs
│ │ ├── IProductRepository.cs
│ │ ├── IUserRoleRepository.cs
│ │ └── ISalesOrderRepository.cs
│ ├── Model
│ │ ├── ViewModels
│ │ │ └── ShoppingCartModels.cs
│ │ ├── ValidationModel
│ │ │ └── Role.cs
│ │ └── ShoppingCart.cs
│ ├── Specifications
│ │ ├── UserStringEqualsSpecification.cs
│ │ ├── UserEmailEqualsSpecification.cs
│ │ ├── UserNameEqualsSpecification.cs
│ │ ├── UserPasswordEqualsSpecification.cs
│ │ ├── UserRolesSpecification.cs
│ │ ├── SalesOrderBelongsToUserSpecification.cs
│ │ ├── SalesOrderIDEqualsSpecification.cs
│ │ ├── ShoppingCartBelongsToCustomerSpecification.cs
│ │ └── ShoppingCartItemHasProductSpecification.cs
│ ├── Events
│ │ ├── GetUserOrdersEvent.cs
│ │ ├── OrderConfirmedEvent.cs
│ │ └── OrderDispatchedEvent.cs
│ ├── Services
│ │ └── IPostbackService.cs
│ └── app.config
├── LCLWebMvcDemo.v12.suo
├── LCL.Application
│ ├── key.snk
│ └── packages.config
├── LCL.Infrastructure
│ └── key.snk
├── LCL.Domain.Repositories
│ ├── key.snk
│ └── EntityFramework
│ │ ├── CategoryRepository.cs
│ │ ├── RoleRepository.cs
│ │ ├── ModelConfigurations
│ │ ├── ShoppingCartTypeConfiguration.cs
│ │ ├── RoleTypeConfiguration.cs
│ │ ├── SalesOrderTypeConfiguration.cs
│ │ ├── ShoppingCartItemTypeConfiguration.cs
│ │ ├── SalesLineTypeConfiguration.cs
│ │ └── CategoryTypeConfiguration.cs
│ │ └── ShoppingCartRepository.cs
└── DeleteBin.bat
└── Source
├── src
├── LCL.VSIXProject
│ ├── Templates
│ │ ├── ItemTemplates
│ │ │ └── index.htm
│ │ └── ProjectTemplates
│ │ │ └── index.htm
│ ├── _ReadMe.txt
│ ├── Key.snk
│ ├── logo.ico
│ ├── logo.jpg
│ ├── .vs
│ │ └── LCL.VSIXProject
│ │ │ └── v15
│ │ │ └── .suo
│ └── Resources
│ │ ├── FileHeaderCommands.png
│ │ ├── ProjectTemplateCommand.png
│ │ ├── InstallCodeSnippetsCommand.png
│ │ ├── DeleteCustomFileNullLineCommand.png
│ │ └── InstallCodeSnippetsCommandPackage.ico
├── LCL
│ ├── key.snk
│ ├── Utils.cs
│ ├── Config
│ │ ├── ISettings.cs
│ │ └── Startup
│ │ │ ├── LclStartupConfigurationExtensions.cs
│ │ │ └── IModuleConfigurations.cs
│ ├── Domain
│ │ ├── Uow
│ │ │ └── IUnitOfWork.cs
│ │ ├── Services
│ │ │ ├── Logging
│ │ │ │ └── TraceLogger.cs
│ │ │ ├── IDomainService.cs
│ │ │ ├── Language
│ │ │ │ └── ILocalizationService.cs
│ │ │ └── DomainService.cs
│ │ ├── Entities
│ │ │ ├── IPassivable.cs
│ │ │ ├── ISoftDelete.cs
│ │ │ ├── IMayHaveTenant.cs
│ │ │ ├── IMustHaveTenant.cs
│ │ │ ├── LocaleStringResource.cs
│ │ │ ├── EntityExtensions.cs
│ │ │ ├── IAggregateRoot.cs
│ │ │ ├── IEntity.cs
│ │ │ └── AggregateRoot.cs
│ │ ├── Specifications
│ │ │ ├── ISpecificationParser.cs
│ │ │ ├── ICompositeSpecification.cs
│ │ │ ├── AnySpecification.cs
│ │ │ ├── NoneSpecification.cs
│ │ │ ├── ISpecification.cs
│ │ │ ├── OrSpecification.cs
│ │ │ ├── AndSpecification.cs
│ │ │ ├── ExpressionSpecification.cs
│ │ │ ├── SpecificationException.cs
│ │ │ ├── AndNotSpecification.cs
│ │ │ ├── NotSpecification.cs
│ │ │ └── CompositeSpecification.cs
│ │ ├── Repositories
│ │ │ ├── SortOrder.cs
│ │ │ ├── IRepositoryContext.cs
│ │ │ └── xml
│ │ │ │ └── IXMLRepositoryContext.cs
│ │ └── Events
│ │ │ ├── IDomainEventHandler.cs
│ │ │ └── IDomainEvent.cs
│ ├── Reflection
│ │ └── MethodCaller.cs
│ ├── Threading
│ │ ├── SimpleRWLock!.cs
│ │ ├── ManagedThreadPool.cs
│ │ ├── IObservableActions.cs
│ │ └── IParallelActions.cs
│ ├── Extensions
│ │ ├── StringExtensions.cs
│ │ ├── EnumerableExtensions.cs
│ │ ├── DateTimeExtensions.cs
│ │ ├── ExceptionExtensions.cs
│ │ ├── AssemblyExtensions.cs
│ │ └── EnumExt.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── packages.config
│ ├── IHandler.cs
│ ├── Infrastructure
│ │ ├── IStartupTask.cs
│ │ ├── DependencyManagement
│ │ │ ├── DependencyRegisterAttribute.cs
│ │ │ └── IDependencyRegistrar.cs
│ │ ├── IEngine.cs
│ │ └── TypeFinder
│ │ │ └── ITypeFinder.cs
│ ├── Serialization
│ │ ├── IObjectSerializer.cs
│ │ └── SerializationException.cs
│ ├── LVersion.cs
│ ├── ServiceModel
│ │ └── IApplicationServiceContract.cs
│ ├── ObjectMapping
│ │ ├── IObjectMapper.cs
│ │ └── NullObjectMapper.cs
│ ├── Plugins
│ │ ├── IPlugin.cs
│ │ └── BasePlugin.cs
│ ├── GuidGenerator
│ │ ├── IGuidGenerator.cs
│ │ └── RegularGuidGenerator.cs
│ ├── Transactions
│ │ ├── ITransactionCoordinator.cs
│ │ ├── SuppressedTransactionCoordinator.cs
│ │ └── TransactionCoordinatorFactory.cs
│ ├── Events
│ │ ├── Bus
│ │ │ ├── IEventBus.cs
│ │ │ └── IBus.cs
│ │ ├── IEventHandler.cs
│ │ ├── HandlesAsynchronouslyAttribute.cs
│ │ └── IEvent.cs
│ ├── Caching
│ │ ├── CachingMethod.cs
│ │ └── ICacheProvider.cs
│ ├── WriteLockDisposable.cs
│ ├── DisposableObject.cs
│ └── NamedTypeSelector.cs
├── LCL.Web
│ ├── key.snk
│ ├── Mvc
│ │ ├── Models
│ │ │ ├── AddOrEditViewModel.cs
│ │ │ ├── IModelAttribute.cs
│ │ │ ├── DeleteConfirmationModel.cs
│ │ │ ├── EasyUIGridModel.cs
│ │ │ └── PagedListViewModel.cs
│ │ ├── ViewEngines
│ │ │ ├── PluginRuntimeViewEngine.cs
│ │ │ ├── IPluginViewEngine.cs
│ │ │ └── IPluginViewEngineFactory.cs
│ │ ├── Routes
│ │ │ ├── IRouteProvider.cs
│ │ │ └── IRoutePublisher.cs
│ │ └── Template
│ │ │ ├── TemplateServiceProvider.cs
│ │ │ └── MemoryTemplateService.cs
│ ├── NotifyType.cs
│ ├── Localization
│ │ ├── Localizer.cs
│ │ ├── ILocalizedModelLocal.cs
│ │ └── ILocalizedModel.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── PermissionKeys.cs
│ ├── Configuration
│ │ └── LclMvcConfigurationExtensions.cs
│ ├── Fakes
│ │ ├── Extensions.cs
│ │ ├── FakePrincipal.cs
│ │ └── FakeIdentity.cs
│ ├── Security
│ │ └── SslRequirement.cs
│ └── packages.config
├── _Items
│ ├── _ReadMe.txt
│ ├── SharedAssemblyInfo.cs
│ └── SharedAssemblyVersionInfo.cs
├── LCL.Repositories.MongoDB
│ ├── key.snk
│ ├── DependencyRegistrar.cs
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── IMongoDBRepositoryContext.cs
│ ├── EfStartUpTask.cs
│ ├── IMongoDBRepositoryContextSettings.cs
│ └── Conventions
│ │ └── GuidIDGeneratorConvention.cs
├── LCL.Repositories.EntityFramework
│ ├── key.snk
│ ├── DependencyRegistrar.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── IEntityFrameworkRepositoryContext.cs
│ ├── packages.config
│ ├── Mapping
│ │ └── Configuration
│ │ │ └── SettingMap.cs
│ └── Initializers
│ │ └── AutoMigrationsConfiguration.cs
├── LCL.Repositories.NHibernate
│ ├── DependencyRegistrar.cs
│ ├── packages.config
│ └── Properties
│ │ └── AssemblyInfo.cs
├── LCL.AutoMapper
│ ├── packages.config
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── AutoMapAttributeBase.cs
│ ├── AutoMapperConfigurationExtensions.cs
│ ├── AutoMapperObjectMapper.cs
│ └── AutoMapAttribute.cs
└── LCL.RedisCache
│ ├── packages.config
│ ├── IAbpRedisCacheDatabaseProvider.cs
│ ├── IRedisCacheSerializer.cs
│ ├── app.config
│ └── DependencyRegistrar.cs
├── Build.bat
├── README.md
├── 备份源代码.bat
├── .nuget
├── NuGet.exe
├── 发布到nuget官网.bat
├── NuGet.Config
└── pushNupkg.bat
├── Document
├── logo.ico
├── logo.jpg
└── StyleCop.Cache
├── tools
└── FxCop
│ ├── FxCop.chm
│ ├── FxCop.exe
│ ├── FxCopUI.dll
│ ├── MSSp3en.lex
│ ├── FxCopCmd.exe
│ ├── FxCopSdk.dll
│ ├── MSSp3ena.lex
│ ├── MSSpell3.dll
│ ├── msdia100.dll
│ ├── FxCopCommon.dll
│ ├── Microsoft.Cci.dll
│ ├── Rules
│ ├── DesignRules.dll
│ ├── NamingRules.dll
│ ├── UsageRules.dll
│ ├── MobilityRules.dll
│ ├── SecurityRules.dll
│ ├── PerformanceRules.dll
│ ├── PortabilityRules.dll
│ ├── GlobalizationRules.dll
│ ├── InteroperabilityRules.dll
│ └── SecurityTransparencyRules.dll
│ ├── Repository
│ ├── system32.bin
│ └── Compatibility
│ │ └── Desktop2.0.xml
│ ├── Engines
│ ├── IntrospectionForms.dll
│ └── IntrospectionAnalysisEngine.dll
│ ├── Microsoft.VisualStudio.CodeAnalysis.dll
│ ├── Microsoft.VisualStudio.CodeAnalysis.Common.dll
│ └── Microsoft.VisualStudio.CodeAnalysis.Interop.dll
├── Tests
└── LCL.Tests
│ ├── ACore
│ └── Domain
│ │ ├── Repositories
│ │ ├── ICategoryRepository.cs
│ │ ├── IRoleRepository.cs
│ │ ├── MongoDB
│ │ │ ├── CategoryRepository.cs
│ │ │ ├── RoleRepository.cs
│ │ │ └── ShoppingCartRepository.cs
│ │ ├── EntityFramework
│ │ │ ├── CategoryRepository.cs
│ │ │ ├── RoleRepository.cs
│ │ │ ├── ModelConfigurations
│ │ │ │ ├── ShoppingCartTypeConfiguration.cs
│ │ │ │ ├── SalesOrderTypeConfiguration.cs
│ │ │ │ ├── ShoppingCartItemTypeConfiguration.cs
│ │ │ │ └── SalesLineTypeConfiguration.cs
│ │ │ └── ShoppingCartRepository.cs
│ │ ├── Specifications
│ │ │ ├── UserStringEqualsSpecification.cs
│ │ │ ├── UserEmailEqualsSpecification.cs
│ │ │ ├── UserNameEqualsSpecification.cs
│ │ │ ├── UserPasswordEqualsSpecification.cs
│ │ │ ├── UserRolesSpecification.cs
│ │ │ ├── SalesOrderBelongsToUserSpecification.cs
│ │ │ ├── SalesOrderIDEqualsSpecification.cs
│ │ │ ├── ShoppingCartBelongsToCustomerSpecification.cs
│ │ │ └── ShoppingCartItemHasProductSpecification.cs
│ │ ├── IShoppingCartRepository.cs
│ │ ├── IProductRepository.cs
│ │ └── IUserRoleRepository.cs
│ │ ├── Events
│ │ ├── GetUserOrdersEvent.cs
│ │ ├── OrderConfirmedEvent.cs
│ │ └── OrderDispatchedEvent.cs
│ │ └── Model
│ │ └── ShoppingCart.cs
│ ├── TestsBase.cs
│ ├── Domain
│ ├── Services
│ │ └── ServicesTest.cs
│ └── Events
│ │ └── Bus
│ │ └── BusTest.cs
│ ├── Fakes
│ └── TypeFindingBase.cs
│ ├── packages.config
│ └── Infrastructuretest
│ └── TypeFinderTests.cs
├── DeleteBin.bat
├── StyleCop.Cache
├── common.props
└── appveyor.yml
/LCLDemo/LCL.Services/ReadMe.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/App_Data/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/Models/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/Plugins/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/App_Data/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Plugins/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.Services/Plugins/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/Controllers/v2/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Connected Services/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Views/Common/Footer.cshtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.Services/Connected Services/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Views/Common/Sitemap.cshtml:
--------------------------------------------------------------------------------
1 | 呵呵呵
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Views/Common/LanguageSelector.cshtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Source/src/LCL.VSIXProject/Templates/ItemTemplates/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Source/src/LCL.VSIXProject/Templates/ProjectTemplates/index.htm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Source/Build.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/Build.bat
--------------------------------------------------------------------------------
/Source/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/README.md
--------------------------------------------------------------------------------
/Source/src/LCL.VSIXProject/_ReadMe.txt:
--------------------------------------------------------------------------------
1 | http://blog.csdn.net/slowlifes/article/details/53130951
--------------------------------------------------------------------------------
/Source/备份源代码.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/备份源代码.bat
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
--------------------------------------------------------------------------------
/Source/src/LCL/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/key.snk
--------------------------------------------------------------------------------
/LCLDemo/LCL.Web.BootstrapMvc/Enums/Tables.cs:
--------------------------------------------------------------------------------
1 | namespace LCL.Web.BootstrapMvc.Enums
2 | {
3 |
4 | }
5 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/Source/.nuget/NuGet.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/.nuget/NuGet.exe
--------------------------------------------------------------------------------
/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/src/LCL/Utils.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Utils.cs
--------------------------------------------------------------------------------
/LCLDemo/Documents/model.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/model.jpg
--------------------------------------------------------------------------------
/LCLDemo/LCL.Domain/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain/key.snk
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/key.snk
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/key.snk
--------------------------------------------------------------------------------
/Source/src/LCL.Web/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Web/key.snk
--------------------------------------------------------------------------------
/LCLDemo/Documents/LCLDemo.eap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/LCLDemo.eap
--------------------------------------------------------------------------------
/LCLDemo/Documents/demo_p.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/demo_p.jpg
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/favicon.ico
--------------------------------------------------------------------------------
/LCLDemo/LCLWebMvcDemo.v12.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCLWebMvcDemo.v12.suo
--------------------------------------------------------------------------------
/Source/src/_Items/_ReadMe.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/_Items/_ReadMe.txt
--------------------------------------------------------------------------------
/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/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
--------------------------------------------------------------------------------
/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/LCL.Application/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Application/key.snk
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/op.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/op.jpg
--------------------------------------------------------------------------------
/Source/tools/FxCop/FxCopCmd.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopCmd.exe
--------------------------------------------------------------------------------
/Source/tools/FxCop/FxCopSdk.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopSdk.dll
--------------------------------------------------------------------------------
/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/msdia100.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/msdia100.dll
--------------------------------------------------------------------------------
/LCLDemo/Documents/DomainEvents.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/DomainEvents.jpg
--------------------------------------------------------------------------------
/LCLDemo/LCL.Infrastructure/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Infrastructure/key.snk
--------------------------------------------------------------------------------
/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/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/Edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Edit.png
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/Login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Login.png
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/Save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Save.png
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/close.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/close.gif
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/hard.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/hard.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/trash.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/trash.jpg
--------------------------------------------------------------------------------
/Source/.nuget/发布到nuget官网.bat:
--------------------------------------------------------------------------------
1 | nuget push *.nupkg -s https://www.nuget.org 7b0e7594-53e2-4dd9-94c5-7071150759b1
2 |
3 | pause
--------------------------------------------------------------------------------
/Source/src/LCL.VSIXProject/Key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.VSIXProject/Key.snk
--------------------------------------------------------------------------------
/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/tools/FxCop/FxCopCommon.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/FxCopCommon.dll
--------------------------------------------------------------------------------
/LCLDemo/Documents/EventAggregator.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/Documents/EventAggregator.jpg
--------------------------------------------------------------------------------
/LCLDemo/LCL.Services/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="LCL.Services.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.Web.BootstrapMvc/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Web.BootstrapMvc/key.snk
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="LCL.WebMvc.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/Cancel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Cancel.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/Enable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Enable.png
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/Logout.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Logout.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/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/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/banner.jpg
--------------------------------------------------------------------------------
/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/header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/header.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
--------------------------------------------------------------------------------
/Source/tools/FxCop/Microsoft.Cci.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Microsoft.Cci.dll
--------------------------------------------------------------------------------
/LCLDemo/LCL.Domain.Repositories/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Domain.Repositories/key.snk
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/Content/myStyle.css:
--------------------------------------------------------------------------------
1 | .swagger-section #header {
2 | background-color: #0000ff;
3 | padding: 14px;
4 | }
5 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="LCL.WebAPI.WebApiApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/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/Product_32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Product_32.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/afterlogo.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/afterlogo.jpg
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/category.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/category.jpg
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/newtovar.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/newtovar.jpg
--------------------------------------------------------------------------------
/Source/src/LCL/Config/ISettings.cs:
--------------------------------------------------------------------------------
1 |
2 | namespace LCL.Config
3 | {
4 | public interface ISettings
5 | {
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/Source/src/LCL/Domain/Uow/IUnitOfWork.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Uow/IUnitOfWork.cs
--------------------------------------------------------------------------------
/Source/tools/FxCop/Rules/DesignRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/DesignRules.dll
--------------------------------------------------------------------------------
/Source/tools/FxCop/Rules/NamingRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/NamingRules.dll
--------------------------------------------------------------------------------
/Source/tools/FxCop/Rules/UsageRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/UsageRules.dll
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/App_Data/LCLTestDB.sdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/LCLTestDB.sdf
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/App_Data/LCLTestDB.sdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/LCLTestDB.sdf
--------------------------------------------------------------------------------
/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/ShoppingCart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/ShoppingCart.png
--------------------------------------------------------------------------------
/Source/src/LCL/Reflection/MethodCaller.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Reflection/MethodCaller.cs
--------------------------------------------------------------------------------
/Source/src/LCL/Threading/SimpleRWLock!.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/SimpleRWLock!.cs
--------------------------------------------------------------------------------
/Source/tools/FxCop/Repository/system32.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Repository/system32.bin
--------------------------------------------------------------------------------
/Source/tools/FxCop/Rules/MobilityRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/MobilityRules.dll
--------------------------------------------------------------------------------
/Source/tools/FxCop/Rules/SecurityRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/SecurityRules.dll
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/App_Start/SwaggerConfig.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Start/SwaggerConfig.cs
--------------------------------------------------------------------------------
/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/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/arrows-ffffff.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/arrows-ffffff.png
--------------------------------------------------------------------------------
/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/taling_center.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/taling_center.jpg
--------------------------------------------------------------------------------
/Source/src/LCL.Repositories.MongoDB/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/key.snk
--------------------------------------------------------------------------------
/Source/src/LCL/Extensions/StringExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/StringExtensions.cs
--------------------------------------------------------------------------------
/Source/src/LCL/Threading/ManagedThreadPool.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Threading/ManagedThreadPool.cs
--------------------------------------------------------------------------------
/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/GlobalizationRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/GlobalizationRules.dll
--------------------------------------------------------------------------------
/LCLDemo/LCL.Services/OrderService.svc:
--------------------------------------------------------------------------------
1 | <%@ ServiceHost Language="C#" Debug="true" Service="LCL.Services.OrderService" CodeBehind="OrderService.svc.cs" %>
2 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.Services/UserService.svc:
--------------------------------------------------------------------------------
1 | <%@ ServiceHost Language="C#" Debug="true" Service="LCL.Services.UserService" CodeBehind="UserService.svc.cs" %>
2 |
--------------------------------------------------------------------------------
/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/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/favicon.ico
--------------------------------------------------------------------------------
/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/Images/byteartretail_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/byteartretail_logo.png
--------------------------------------------------------------------------------
/Source/src/LCL/Extensions/EnumerableExtensions.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Extensions/EnumerableExtensions.cs
--------------------------------------------------------------------------------
/Source/tools/FxCop/Engines/IntrospectionForms.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Engines/IntrospectionForms.dll
--------------------------------------------------------------------------------
/Source/tools/FxCop/Rules/InteroperabilityRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/InteroperabilityRules.dll
--------------------------------------------------------------------------------
/LCLDemo/LCL.Services/ProductService.svc:
--------------------------------------------------------------------------------
1 | <%@ ServiceHost Language="C#" Debug="true" Service="LCL.Services.ProductService" CodeBehind="ProductService.svc.cs" %>
2 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/App_Data/InstalledPlugins.txt:
--------------------------------------------------------------------------------
1 | LCL.Plugin.EasyUI
2 | LCL.Plugin.UCenter
3 | LCL.Plugin.Rbac
4 | Widgets.NivoSlider
5 | Widgets.Avatars
6 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/App_Data/InstalledPlugins.txt:
--------------------------------------------------------------------------------
1 | LCL.Plugin.EasyUI
2 | LCL.Plugin.UCenter
3 | LCL.Plugin.Rbac
4 | Widgets.NivoSlider
5 | Widgets.Avatars
6 |
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Images/Products/ProductImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/Products/ProductImage.png
--------------------------------------------------------------------------------
/Source/src/LCL.Repositories.EntityFramework/key.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.EntityFramework/key.snk
--------------------------------------------------------------------------------
/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/NotifyType.cs:
--------------------------------------------------------------------------------
1 | namespace LCL
2 | {
3 | public enum NotifyType
4 | {
5 | Success,
6 | Error
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/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.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/Images/byteartretail_logo_trans.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Images/byteartretail_logo_trans.png
--------------------------------------------------------------------------------
/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/Domain/Services/Logging/TraceLogger.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL/Domain/Services/Logging/TraceLogger.cs
--------------------------------------------------------------------------------
/Source/tools/FxCop/Rules/SecurityTransparencyRules.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Rules/SecurityTransparencyRules.dll
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebAPI/Infrastructure/DependencyRegistrar.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/Infrastructure/DependencyRegistrar.cs
--------------------------------------------------------------------------------
/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.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/LCLDemo/LCL.WebMvc/Infrastructure/DependencyRegistrar.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/Infrastructure/DependencyRegistrar.cs
--------------------------------------------------------------------------------
/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.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/LCLDemo/LCL.Services/Infrastructure/DependencyRegistrar.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.Services/Infrastructure/DependencyRegistrar.cs
--------------------------------------------------------------------------------
/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.WebMvc/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/Source/src/LCL.Repositories.MongoDB/DependencyRegistrar.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.MongoDB/DependencyRegistrar.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.Web/Localization/Localizer.cs:
--------------------------------------------------------------------------------
1 | namespace LCL.Web.Localization
2 | {
3 | public delegate LocalizedString Localizer(string text, params object[] args);
4 | }
--------------------------------------------------------------------------------
/Source/tools/FxCop/Engines/IntrospectionAnalysisEngine.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Engines/IntrospectionAnalysisEngine.dll
--------------------------------------------------------------------------------
/Source/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/tools/FxCop/Microsoft.VisualStudio.CodeAnalysis.dll
--------------------------------------------------------------------------------
/Source/src/LCL.Repositories.NHibernate/DependencyRegistrar.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/Source/src/LCL.Repositories.NHibernate/DependencyRegistrar.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/Domain/Entities/IPassivable.cs:
--------------------------------------------------------------------------------
1 | namespace LCL.Domain.Entities
2 | {
3 | public interface IPassivable
4 | {
5 | bool IsActive { get; set; }
6 | }
7 | }
--------------------------------------------------------------------------------
/Source/src/LCL/Extensions/DateTimeExtensions.cs:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace LCL
4 | {
5 | public static class DateTimeExtensions
6 | {
7 | //...
8 | }
9 | }
--------------------------------------------------------------------------------
/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.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
--------------------------------------------------------------------------------
/Source/src/LCL.AutoMapper/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
Use this area to provide additional information.
8 | -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/29ebfc59_e14a_49bc_9a41_d0796f392475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/29ebfc59_e14a_49bc_9a41_d0796f392475.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/2d3df03f_0663_4f9a_8f6c_cb0af683cd23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/2d3df03f_0663_4f9a_8f6c_cb0af683cd23.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/333c0de9_cae2_4458_a675_3560e8525ae5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/333c0de9_cae2_4458_a675_3560e8525ae5.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/43dd3fe6_4203_41dd_b570_2c9eacb7c021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/43dd3fe6_4203_41dd_b570_2c9eacb7c021.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/774f83b1_e90d_4ff1_a148_f90af591a865.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/774f83b1_e90d_4ff1_a148_f90af591a865.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/82d1556f_1238_43ce_a5fd_410cc246162e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/82d1556f_1238_43ce_a5fd_410cc246162e.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/a1c1738a_eaba_4c4c_b683_7c5b4eb64306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/a1c1738a_eaba_4c4c_b683_7c5b4eb64306.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/b182e978_85e1_474d_84e3_e505441e9000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/b182e978_85e1_474d_84e3_e505441e9000.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/bc0d0d76_3d79_472e_86bb_63a9376d2bab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/bc0d0d76_3d79_472e_86bb_63a9376d2bab.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/bc2dbf1a_699a_4eaf_a49f_4eccc199bb55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/bc2dbf1a_699a_4eaf_a49f_4eccc199bb55.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/c9285a49_972c_4356_a893_3e2a4e45c17d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/c9285a49_972c_4356_a893_3e2a4e45c17d.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/d5d4367d_ab87_4687_8d7c_d1544acf50d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/d5d4367d_ab87_4687_8d7c_d1544acf50d1.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/d633a09b_479f_4af2_af9d_635b7a59e1b7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/d633a09b_479f_4af2_af9d_635b7a59e1b7.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/dafeaaed_0b93_45ea_8b04_00dd86c62d5e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/dafeaaed_0b93_45ea_8b04_00dd86c62d5e.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/dd34e809_b1fc_4c75_b8f9_c5444a64cb47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebAPI/App_Data/demo_data/Products/dd34e809_b1fc_4c75_b8f9_c5444a64cb47.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/29ebfc59_e14a_49bc_9a41_d0796f392475.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/29ebfc59_e14a_49bc_9a41_d0796f392475.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/2d3df03f_0663_4f9a_8f6c_cb0af683cd23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/2d3df03f_0663_4f9a_8f6c_cb0af683cd23.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/333c0de9_cae2_4458_a675_3560e8525ae5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/333c0de9_cae2_4458_a675_3560e8525ae5.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/43dd3fe6_4203_41dd_b570_2c9eacb7c021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/43dd3fe6_4203_41dd_b570_2c9eacb7c021.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/774f83b1_e90d_4ff1_a148_f90af591a865.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/774f83b1_e90d_4ff1_a148_f90af591a865.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/82d1556f_1238_43ce_a5fd_410cc246162e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/82d1556f_1238_43ce_a5fd_410cc246162e.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/a1c1738a_eaba_4c4c_b683_7c5b4eb64306.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/a1c1738a_eaba_4c4c_b683_7c5b4eb64306.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/b182e978_85e1_474d_84e3_e505441e9000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/b182e978_85e1_474d_84e3_e505441e9000.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/bc0d0d76_3d79_472e_86bb_63a9376d2bab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/bc0d0d76_3d79_472e_86bb_63a9376d2bab.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/bc2dbf1a_699a_4eaf_a49f_4eccc199bb55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/bc2dbf1a_699a_4eaf_a49f_4eccc199bb55.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/c9285a49_972c_4356_a893_3e2a4e45c17d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/c9285a49_972c_4356_a893_3e2a4e45c17d.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/d5d4367d_ab87_4687_8d7c_d1544acf50d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/d5d4367d_ab87_4687_8d7c_d1544acf50d1.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/d633a09b_479f_4af2_af9d_635b7a59e1b7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/d633a09b_479f_4af2_af9d_635b7a59e1b7.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/dafeaaed_0b93_45ea_8b04_00dd86c62d5e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/dafeaaed_0b93_45ea_8b04_00dd86c62d5e.jpg -------------------------------------------------------------------------------- /LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/dd34e809_b1fc_4c75_b8f9_c5444a64cb47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luomingui/LCLFramework/HEAD/LCLDemo/LCL.WebMvc/App_Data/demo_data/Products/dd34e809_b1fc_4c75_b8f9_c5444a64cb47.jpg -------------------------------------------------------------------------------- /Source/src/LCL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyDefaultAlias("LCL.dll")] 4 | [assembly: AssemblyDescription("LCL Application Development Framework")] 5 | [assembly: AssemblyTitle("LCL")] -------------------------------------------------------------------------------- /Source/src/LCL.AutoMapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyDefaultAlias("LCL.dll")] 4 | [assembly: AssemblyDescription("LCL Repositories EntityFramework")] 5 | [assembly: AssemblyTitle("LCL")] -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.MongoDB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyDefaultAlias("LCL.dll")] 4 | [assembly: AssemblyDescription("LCL Repositories MongoDB")] 5 | [assembly: AssemblyTitle("LCL")] -------------------------------------------------------------------------------- /Source/src/LCL.Repositories.NHibernate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyDefaultAlias("LCL.dll")] 4 | [assembly: AssemblyDescription("LCL Repositories NHibernate")] 5 | [assembly: AssemblyTitle("LCL")] -------------------------------------------------------------------------------- /Source/src/LCL.Web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyDefaultAlias("LCL.Web.dll")] 4 | [assembly: AssemblyDescription("LCL Web Application Development Framework")] 5 | [assembly: AssemblyTitle("LCL.Web")] -------------------------------------------------------------------------------- /LCLDemo/LCL.Application/packages.config: -------------------------------------------------------------------------------- 1 | 2 |发邮件给我们:minguiluo@163.com
8 |发邮件给我们:minguiluo@163.com
7 |