├── .gitattributes ├── .gitignore ├── Bussines ├── Abstract │ ├── IAppUserService.cs │ ├── IAppUserTypeService.cs │ ├── IAuthService.cs │ ├── ILanguageService.cs │ ├── IPageLanguageService.cs │ ├── IPageService.cs │ ├── IPageTypeService.cs │ └── IUploadImageService.cs ├── Business.csproj ├── Concrete │ ├── AppUserService.cs │ ├── AppUserTypeService.cs │ ├── AuthService.cs │ ├── LanguageService.cs │ ├── PageLanguageService.cs │ ├── PageService.cs │ ├── PageTypeService.cs │ └── UploadImageService.cs ├── Constants │ └── Messages.cs ├── DependencyResolvers │ └── AutofacModule.cs └── Validations │ └── FluentValidation │ ├── AppUserAddDtoValidator.cs │ ├── AppUserTypeAddDtoValidator.cs │ ├── AppUserTypeUpdateDtoValidator.cs │ ├── AppUserUpdateDtoValidator.cs │ ├── LoginDtoValidator.cs │ ├── PageAddDtoValidator.cs │ ├── PagePageLanguageAddDtoValidator.cs │ ├── PagePageLanguageUpdateDtoValidator.cs │ └── PageUpdateDtoValidator.cs ├── Core ├── Aspects │ └── Autofac │ │ ├── Caching │ │ ├── CacheAspect.cs │ │ └── CacheRemoveAspect.cs │ │ ├── Exception │ │ └── ExceptionLogAspect.cs │ │ ├── Logging │ │ └── LogAspect.cs │ │ ├── SecuredOperation │ │ └── SecuredOperationAspect.cs │ │ ├── Transaction │ │ └── TransactionScopeAspect.cs │ │ └── Validation │ │ └── ValidationAspect.cs ├── Core.csproj ├── CrossCuttingConcers │ ├── Caching │ │ ├── ICacheService.cs │ │ └── Microsoft │ │ │ └── MemoryCacheService.cs │ ├── Logging │ │ ├── LogDetail.cs │ │ ├── LogDetailWithException.cs │ │ ├── LogParameter.cs │ │ └── Serilog │ │ │ ├── LoggerServiceBase.cs │ │ │ └── Loggers │ │ │ └── FileLogger.cs │ └── Validation │ │ └── ValidationTool.cs ├── DataAccess │ ├── EntityFramework │ │ └── EfBaseRepository.cs │ └── IBaseRepository.cs ├── Entities │ ├── BaseEntities │ │ ├── AuditEntity.cs │ │ ├── BaseEntity.cs │ │ ├── CreatedEntity.cs │ │ └── UpdatedEntity.cs │ ├── Concrete │ │ ├── OperationClaim.cs │ │ ├── User.cs │ │ ├── UserType.cs │ │ └── UserTypeOperationClaim.cs │ ├── Dtos │ │ └── OperationClaimDto.cs │ ├── ICreatedEntity.cs │ ├── IDisplayEntity.cs │ ├── IDto.cs │ ├── IEntity.cs │ ├── ISoftDeleteEntity.cs │ └── IUpdatedEntity.cs ├── Extensions │ ├── ClaimExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ ├── ExceptionMiddleware.cs │ ├── ExceptionMiddlewareExtensions.cs │ ├── JwtTokenExtensions.cs │ ├── StaticHttpContextExtensions.cs │ └── SwaggerExtensions.cs ├── Localize │ └── Resource.cs ├── Providers │ ├── CookieRequestCultureProvider.cs │ └── RequestHeaderCultureProvider.cs ├── Resources │ ├── Localize.Resource.en-US.resx │ └── Localize.Resource.tr-TR.resx └── Utilities │ ├── Exceptions │ └── UnAuthorizeException.cs │ ├── Helpers │ └── HttpContext.cs │ ├── Interceptors │ ├── AspectInterseptorSelector.cs │ ├── MethodInterception.cs │ └── MethodInterceptionBaseAttribute.cs │ ├── Localization │ ├── ILocalizationService.cs │ └── LocalizationService.cs │ ├── Messages │ ├── Constants.cs │ └── ResultCodes.cs │ ├── Responses │ ├── ApiDataResponse.cs │ ├── ApiResponse.cs │ ├── ErrorApiDataResponse.cs │ ├── ErrorApiResponse.cs │ ├── SuccessApiDataResponse.cs │ └── SuccessApiResponse.cs │ ├── Security │ ├── Hash │ │ ├── IHashService.cs │ │ ├── Sha256 │ │ │ └── Sha256HashService.cs │ │ └── Sha512 │ │ │ └── Sha512Helper.cs │ ├── MD5 │ │ ├── IMD5Service.cs │ │ └── MD5Service.cs │ └── Token │ │ ├── AccessToken.cs │ │ ├── AppSettings.cs │ │ ├── ITokenService.cs │ │ └── Jwt │ │ └── JwtTokenService.cs │ └── Settings │ └── LocalizationAppSettings.cs ├── DataAccess ├── Abstract │ ├── IAppOperationClaimDal.cs │ ├── IAppUserDal.cs │ ├── IAppUserTypeAppOperationClaimDal.cs │ ├── IAppUserTypeDal.cs │ ├── ILanguageDal.cs │ ├── IPageDal.cs │ ├── IPageLanguageDal.cs │ └── IPageTypeDal.cs ├── Concrete │ ├── Contexts │ │ └── ECommerceDbContext.cs │ └── EntityFramework │ │ ├── Configurations │ │ ├── AppOperationClaimConfiguration.cs │ │ ├── AppUserConfiguration.cs │ │ ├── AppUserTypeAppOperationClaimConfiguration.cs │ │ ├── AppUserTypeConfiguration.cs │ │ ├── LanguageConfiguration.cs │ │ ├── PageConfiguration.cs │ │ ├── PageLanguageConfiguration.cs │ │ ├── PagePermissonConfiguration.cs │ │ └── PageTypeConfiguration.cs │ │ ├── EfAppOperationClaimDal.cs │ │ ├── EfAppUserAppOperationClaimDal.cs │ │ ├── EfAppUserDal.cs │ │ ├── EfAppUserTypeDal.cs │ │ ├── EfLanguageDal.cs │ │ ├── EfPageDal.cs │ │ ├── EfPageLanguageDal.cs │ │ └── EfPageTypeDal.cs ├── DataAccess.csproj └── Migrations │ ├── 20230826203749_FirstMigration.Designer.cs │ ├── 20230826203749_FirstMigration.cs │ └── ECommerceDbContextModelSnapshot.cs ├── ECommerceProjectWithWebAPI.sln ├── Entities ├── Abstract │ └── Enums │ │ ├── EnumAppUserTypes.cs │ │ ├── EnumGenders.cs │ │ └── EnumLanguages.cs ├── Concrete │ ├── AppOperationClaim.cs │ ├── AppUser.cs │ ├── AppUserType.cs │ ├── AppUserTypeAppOperationClaim.cs │ ├── Laguage.cs │ ├── Page.cs │ ├── PageLanguage.cs │ ├── PagePermisson.cs │ └── PageType.cs ├── Dtos │ ├── AppOperationClaims │ │ └── AppOperationClaimDto.cs │ ├── AppUserTypes │ │ ├── AppUserTypeAddDto.cs │ │ ├── AppUserTypeDeleteDto.cs │ │ ├── AppUserTypeDetailDto.cs │ │ ├── AppUserTypeDto.cs │ │ └── AppUserTypeUpdateDto.cs │ ├── AppUsers │ │ ├── AppUserAddDto.cs │ │ ├── AppUserDeleteDto.cs │ │ ├── AppUserDetailDto.cs │ │ ├── AppUserDto.cs │ │ └── AppUserUpdateDto.cs │ ├── Auths │ │ ├── LoginDto.cs │ │ └── RegisterDto.cs │ ├── Languages │ │ ├── LanguageDetailDto.cs │ │ └── LanguageDto.cs │ ├── PageLanguages │ │ ├── PageLanguageAddDto.cs │ │ ├── PageLanguageDeleteDto.cs │ │ ├── PageLanguageDetailDto.cs │ │ ├── PageLanguageDto.cs │ │ └── PageLanguageUpdateDto.cs │ ├── PagePageLanguages │ │ ├── PagePageLanguageAddDto.cs │ │ ├── PagePageLanguageDeleteDto.cs │ │ ├── PagePageLanguageDetailDto.cs │ │ ├── PagePageLanguageDto.cs │ │ └── PagePageLanguageUpdateDto.cs │ ├── PageTypes │ │ └── PageTypeDto.cs │ ├── Pages │ │ ├── PageAddDto.cs │ │ ├── PageDeleteDto.cs │ │ ├── PageDetailDto.cs │ │ ├── PageDto.cs │ │ └── PageUpdateDto.cs │ └── UploadImages │ │ ├── FileUploudAPIDto.cs │ │ └── UploadImageDto.cs ├── Entities.csproj └── Mappings │ └── MappingProfile.cs ├── README.md ├── WebAPI ├── Controllers │ ├── AppUserTypesController.cs │ ├── AppUsersController.cs │ ├── AuthController.cs │ ├── LanguagesController.cs │ ├── PageLanguagesController.cs │ ├── PageTypesController.cs │ ├── PagesController.cs │ └── UploadImagesController.cs ├── Logs │ ├── 20230425.txt │ ├── 20230429.txt │ ├── 20230429_001.txt │ ├── 20230823.txt │ ├── 20230825.txt │ ├── 20230825_001.txt │ ├── 20230826.txt │ ├── 20230826_001.txt │ ├── 20230826_002.txt │ ├── 20230826_003.txt │ ├── 20230826_004.txt │ ├── 20230826_005.txt │ ├── 20230826_006.txt │ ├── 20230826_007.txt │ ├── 20230826_008.txt │ ├── 20230826_009.txt │ ├── 20230826_010.txt │ ├── 20230826_011.txt │ ├── 20230826_012.txt │ ├── 20230826_013.txt │ ├── 20230826_014.txt │ ├── 20230826_015.txt │ ├── 20230826_016.txt │ ├── 20230826_017.txt │ ├── 20230826_018.txt │ ├── 20230826_019.txt │ ├── 20230826_020.txt │ ├── 20230826_021.txt │ ├── 20230826_022.txt │ ├── 20230826_023.txt │ ├── 20230826_024.txt │ ├── 20230826_025.txt │ ├── 20230826_026.txt │ ├── 20230826_027.txt │ ├── 20230826_028.txt │ ├── 20230826_029.txt │ ├── 20230826_030.txt │ └── 20230826_031.txt ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── WebAPI.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ └── Upload │ ├── 0b7f6c42-594a-41f1-9b6a-1beddd975991.jfif │ ├── 2dbff90d-cc6a-4d25-b361-3fcc05f022d7.png │ ├── 3a1f169b-9786-4ead-b5cd-09ee6b6ef13f.png │ ├── 3d3e2a4d-36ca-4b4e-9622-9109b09975d1.jfif │ ├── 504c5d34-e92e-4f85-8848-0a6781296e39.png │ ├── 5b7dd246-9338-44ff-89b5-9af2854ba403.jfif │ ├── 5e149f9b-1939-4da8-a96f-ae41f9265908.png │ ├── 6190587b-f862-4906-9737-14fcae0eafd0.png │ ├── 63871414-0595-480c-ac67-907f833a1235.png │ ├── 6ad6a9d8-d99a-4a27-9fcd-4901be1e8f85.jpg │ ├── 71b82766-907c-43b8-9ccd-2b4a70fb272f.png │ ├── 85a5d67c-760f-458f-890a-e095683b6f18.png │ ├── 8acbf07d-7480-48b5-b134-af6d149f8dba.png │ ├── 9d42b2c6-6701-49b9-a904-c3dbd61b3956.png │ ├── a144046a-9690-4979-b35b-a566247a2d76.png │ ├── aa854898-d7c0-4bd6-978c-b834ebb1ae3e.jfif │ ├── afbe559c-9a05-4d30-963e-d7838a326308.png │ ├── b1708cdd-9c39-48af-9ce4-338933277643.jfif │ ├── b1b57958-8875-4a10-b91d-e3102df03c98.png │ ├── b30cf137-c531-438e-9324-5a6bb37dfa1b.jfif │ ├── b9d2676d-83bc-418b-a08c-1d4e2622eec1.png │ ├── ba77400d-b582-49ff-a8a0-65310a75c008.png │ ├── bcf42fe7-6e0d-4364-8a03-c212021975cf.png │ ├── d0610f71-46ce-4820-bff0-d348ac4dae4c.png │ ├── d2df7844-89ed-4fea-bbce-f584de87372f.png │ ├── da9e6d3f-20a8-4c89-90f6-b9e960b7b05b.png │ ├── ebd902a6-2576-4023-9af8-9d26944271c2.jpg │ ├── f0af0edf-585c-43e9-aa01-6283091afa85.png │ ├── f232f874-f9ca-4d9a-ac57-ade72901f974.png │ ├── f5f6fdd7-e741-4659-9758-ace026d78f14.png │ ├── f86bf9f5-0806-4d32-b9fc-e14fc3cb9b3a.png │ └── user3-160x160.png ├── WebAPIWithCoreMvc ├── ApiServices │ ├── AppUserApiService.cs │ ├── AppUserTypeApiService.cs │ ├── AuthApiService.cs │ ├── HttpClientService.cs │ ├── Interfaces │ │ ├── IAppUserApiService.cs │ │ ├── IAppUserTypeApiService.cs │ │ ├── IAuthApiService.cs │ │ ├── IHttpClientService.cs │ │ ├── ILanguageApiService.cs │ │ ├── IPageApiService.cs │ │ ├── IPageLanguageApiService.cs │ │ ├── IPageTypeApiService.cs │ │ └── IUploadImageApiService.cs │ ├── LanguageApiService.cs │ ├── PageApiService.cs │ ├── PageLanguageApiService.cs │ ├── PageTypeApiService.cs │ └── UploadImageApiService.cs ├── Areas │ └── Admin │ │ ├── Controllers │ │ ├── AppUserController.cs │ │ ├── AppUserTypeController.cs │ │ ├── AuthController.cs │ │ ├── ErrorController.cs │ │ ├── HomeController.cs │ │ └── PageController.cs │ │ ├── ViewComponents │ │ └── LeftMenuViewComponent.cs │ │ └── Views │ │ ├── AppUser │ │ ├── Add.cshtml │ │ ├── Delete.cshtml │ │ ├── Detail.cshtml │ │ ├── List.cshtml │ │ └── Update.cshtml │ │ ├── AppUserType │ │ ├── Add.cshtml │ │ ├── Delete.cshtml │ │ ├── Detail.cshtml │ │ ├── List.cshtml │ │ └── Update.cshtml │ │ ├── Auth │ │ └── Login.cshtml │ │ ├── Error │ │ ├── BadRequest400.cshtml │ │ ├── Error404.cshtml │ │ ├── InternalServerError500.cshtml │ │ ├── MyStatusCode.cshtml │ │ └── Unauthorize401.cshtml │ │ ├── Home │ │ └── List.cshtml │ │ ├── Page │ │ ├── Add.cshtml │ │ ├── Delete.cshtml │ │ ├── Detail.cshtml │ │ ├── List.cshtml │ │ └── Update.cshtml │ │ ├── Shared │ │ ├── Components │ │ │ └── LeftMenu │ │ │ │ └── Default.cshtml │ │ └── _LayoutAdmin.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Controllers │ └── HomeController.cs ├── Handler │ └── AuthTokenHandler.cs ├── Helpers │ └── HelperMethods.cs ├── Mappings │ └── MappingMvcProfile.cs ├── Models │ ├── AppUserAddViewModel.cs │ ├── AppUserDeleteViewModel.cs │ ├── AppUserDetailViewModel.cs │ ├── AppUserListViewModel.cs │ ├── AppUserTypeAddViewModel.cs │ ├── AppUserTypeDeleteViewModel.cs │ ├── AppUserTypeDetailViewModel.cs │ ├── AppUserTypeListViewModel.cs │ ├── AppUserTypeUpdateViewModel.cs │ ├── AppUserUpdateViewModel.cs │ ├── ErrorViewModel.cs │ ├── LeftMenuViewModel.cs │ ├── PageAddViewModel.cs │ └── PageViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ScaffoldingReadMe.txt ├── Startup.cs ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── WebAPIWithCoreMvc.csproj ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── Upload │ ├── 0060ced8-58b9-4afd-83e4-e466b8652d4f_user3-160x160.png │ ├── 0420a4d5-578d-40b5-b73d-f718bd60f8bd_red.png │ ├── 10a85f7a-018e-4a39-88db-fc8aa8c9aaea_user3-160x160.png │ ├── 178c2b9d-3d47-4b62-870b-efd5cf957c4d_red.png │ ├── 1c70047c-2759-4a24-8fd2-0565725e7ed1_Fh83rIMWIAAjS6S.jfif │ ├── 2471d171-5333-4944-880b-fad89619da89_user3-160x160.png │ ├── 39995357-59d2-4651-bc64-b5d52fd87620_user3-160x160.png │ ├── 3b126c54-a890-4b10-a6b3-9f7e46e6e051_1668864035223.jpg │ ├── 3de957b0-f887-4b4a-966a-2641556f23d2_user3-160x160.png │ ├── 49f50391-f084-4a95-9c5b-61fea17e4a26_002.jpg │ ├── 65044f4e-9416-4c15-9111-388fd5c47402_Adsız.png │ ├── 6545b52d-0fbe-4d5d-ae7f-84a16b27d67d_resim-yok.png │ ├── 67c5644a-5055-4fc6-84ed-3a70157b9819_user3-160x160.png │ ├── 6f02f2b4-c9d4-4b1d-be11-f669b0fc374c_user3-160x160.png │ ├── 76965e34-841d-4f8b-acc8-47e4d0c961e9_user3-160x160.png │ ├── 76c90310-dead-442d-9d9d-6fb532e04da7_Fh83rIJWYAAFHUw.jfif │ ├── 9e603ce5-eedb-47a2-a4ca-c117fc8a71f1_user3-160x160.png │ ├── a3df33bd-4677-4969-a6dc-00c51665bdee_user3-160x160.png │ ├── ac5d59ba-1856-4fee-b735-6291c9c9d940_Fh83rIJWYAAFHUw.jfif │ ├── b214e557-1d02-4c29-adbc-2104d661f6fa_Fh83rIHX0AAPHx8.jfif │ ├── b9a54be3-1c26-48d3-8a62-7f19260a82ff_red.png │ ├── c81c94b1-48d6-4fc1-ac80-80dbc2de6fa9_user3-160x160.png │ ├── d9738231-76cf-422b-9b61-34e3829a0257_Fh83rIHX0AAPHx8.jfif │ ├── db0ba365-7241-494b-a310-9a1f393331ad_Fh83rIHX0AAPHx8.jfif │ ├── dc8bddcf-651f-4b2a-adce-08cc5e95cdf9_user3-160x160.png │ ├── df348f97-7bc8-470b-bda9-5c16f75084db_user3-160x160.png │ ├── e377fe26-949a-4109-ad8a-2ba15298852a_test-resim.png │ ├── e54511d2-3c30-4eba-ace7-851a8011ed89_user3-160x160.png │ ├── f5b420e8-2422-42a5-8002-21670c58afa5_user3-160x160.png │ ├── fcd441f8-89c0-4dc4-9456-9575435154be_user3-160x160.png │ ├── fcd9bbd8-4d3d-4ca8-89d8-696b64d2de21_user3-160x160.png │ └── user3-160x160.png │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ ├── lib │ ├── AdminLTE-3.2.0-rc │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── adminlte.css │ │ │ │ ├── adminlte.css.map │ │ │ │ ├── adminlte.min.css │ │ │ │ ├── adminlte.min.css.map │ │ │ │ └── alt │ │ │ │ │ ├── adminlte.components.css │ │ │ │ │ ├── adminlte.components.css.map │ │ │ │ │ ├── adminlte.components.min.css │ │ │ │ │ ├── adminlte.components.min.css.map │ │ │ │ │ ├── adminlte.core.css │ │ │ │ │ ├── adminlte.core.css.map │ │ │ │ │ ├── adminlte.core.min.css │ │ │ │ │ ├── adminlte.core.min.css.map │ │ │ │ │ ├── adminlte.extra-components.css │ │ │ │ │ ├── adminlte.extra-components.css.map │ │ │ │ │ ├── adminlte.extra-components.min.css │ │ │ │ │ ├── adminlte.extra-components.min.css.map │ │ │ │ │ ├── adminlte.light.css │ │ │ │ │ ├── adminlte.light.css.map │ │ │ │ │ ├── adminlte.light.min.css │ │ │ │ │ ├── adminlte.light.min.css.map │ │ │ │ │ ├── adminlte.pages.css │ │ │ │ │ ├── adminlte.pages.css.map │ │ │ │ │ ├── adminlte.pages.min.css │ │ │ │ │ ├── adminlte.pages.min.css.map │ │ │ │ │ ├── adminlte.plugins.css │ │ │ │ │ ├── adminlte.plugins.css.map │ │ │ │ │ ├── adminlte.plugins.min.css │ │ │ │ │ └── adminlte.plugins.min.css.map │ │ │ ├── img │ │ │ │ ├── AdminLTELogo.png │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar4.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-150x150.png │ │ │ │ ├── icons.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.jpg │ │ │ │ ├── photo4.jpg │ │ │ │ ├── prod-1.jpg │ │ │ │ ├── prod-2.jpg │ │ │ │ ├── prod-3.jpg │ │ │ │ ├── prod-4.jpg │ │ │ │ ├── prod-5.jpg │ │ │ │ ├── user-160x160.png │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user2-160x160.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── adminlte.js │ │ │ │ ├── adminlte.js.map │ │ │ │ ├── adminlte.min.js │ │ │ │ ├── adminlte.min.js.map │ │ │ │ ├── demo.js │ │ │ │ └── pages │ │ │ │ ├── dashboard.js │ │ │ │ ├── dashboard2.js │ │ │ │ └── dashboard3.js │ │ └── plugins │ │ │ ├── bootstrap-colorpicker │ │ │ ├── css │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ ├── bootstrap-colorpicker.js.map │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ └── bootstrap-colorpicker.min.js.map │ │ │ ├── bootstrap-slider │ │ │ ├── bootstrap-slider.js │ │ │ ├── bootstrap-slider.min.js │ │ │ └── css │ │ │ │ ├── bootstrap-slider.css │ │ │ │ └── bootstrap-slider.min.css │ │ │ ├── bootstrap-switch │ │ │ ├── css │ │ │ │ ├── bootstrap2 │ │ │ │ │ ├── bootstrap-switch.css │ │ │ │ │ └── bootstrap-switch.min.css │ │ │ │ └── bootstrap3 │ │ │ │ │ ├── bootstrap-switch.css │ │ │ │ │ └── bootstrap-switch.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-switch.js │ │ │ │ └── bootstrap-switch.min.js │ │ │ ├── bootstrap │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── bootstrap4-duallistbox │ │ │ ├── bootstrap-duallistbox.css │ │ │ ├── bootstrap-duallistbox.min.css │ │ │ ├── jquery.bootstrap-duallistbox.js │ │ │ └── jquery.bootstrap-duallistbox.min.js │ │ │ ├── bs-custom-file-input │ │ │ ├── bs-custom-file-input.js │ │ │ ├── bs-custom-file-input.js.map │ │ │ ├── bs-custom-file-input.min.js │ │ │ └── bs-custom-file-input.min.js.map │ │ │ ├── bs-stepper │ │ │ ├── css │ │ │ │ ├── bs-stepper.css │ │ │ │ ├── bs-stepper.css.map │ │ │ │ ├── bs-stepper.min.css │ │ │ │ └── bs-stepper.min.css.map │ │ │ └── js │ │ │ │ ├── bs-stepper.js │ │ │ │ ├── bs-stepper.js.map │ │ │ │ ├── bs-stepper.min.js │ │ │ │ └── bs-stepper.min.js.map │ │ │ ├── chart.js │ │ │ ├── Chart.bundle.js │ │ │ ├── Chart.bundle.min.js │ │ │ ├── Chart.css │ │ │ ├── Chart.js │ │ │ ├── Chart.min.css │ │ │ └── Chart.min.js │ │ │ ├── codemirror │ │ │ ├── addon │ │ │ │ ├── comment │ │ │ │ │ ├── comment.js │ │ │ │ │ └── continuecomment.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── display │ │ │ │ │ ├── autorefresh.js │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ ├── panel.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ └── rulers.js │ │ │ │ ├── edit │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ ├── closetag.js │ │ │ │ │ ├── continuelist.js │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ ├── matchtags.js │ │ │ │ │ └── trailingspace.js │ │ │ │ ├── fold │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ ├── foldcode.js │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ └── xml-fold.js │ │ │ │ ├── hint │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ ├── css-hint.js │ │ │ │ │ ├── html-hint.js │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── show-hint.js │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── lint │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ ├── css-lint.js │ │ │ │ │ ├── html-lint.js │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ ├── json-lint.js │ │ │ │ │ ├── lint.css │ │ │ │ │ ├── lint.js │ │ │ │ │ └── yaml-lint.js │ │ │ │ ├── merge │ │ │ │ │ ├── merge.css │ │ │ │ │ └── merge.js │ │ │ │ ├── mode │ │ │ │ │ ├── loadmode.js │ │ │ │ │ ├── multiplex.js │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ ├── overlay.js │ │ │ │ │ └── simple.js │ │ │ │ ├── runmode │ │ │ │ │ ├── colorize.js │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ ├── runmode.js │ │ │ │ │ └── runmode.node.js │ │ │ │ ├── scroll │ │ │ │ │ ├── annotatescrollbar.js │ │ │ │ │ ├── scrollpastend.js │ │ │ │ │ ├── simplescrollbars.css │ │ │ │ │ └── simplescrollbars.js │ │ │ │ ├── search │ │ │ │ │ ├── jump-to-line.js │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ │ ├── search.js │ │ │ │ │ └── searchcursor.js │ │ │ │ ├── selection │ │ │ │ │ ├── active-line.js │ │ │ │ │ ├── mark-selection.js │ │ │ │ │ └── selection-pointer.js │ │ │ │ ├── tern │ │ │ │ │ ├── tern.css │ │ │ │ │ ├── tern.js │ │ │ │ │ └── worker.js │ │ │ │ └── wrap │ │ │ │ │ └── hardwrap.js │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── keymap │ │ │ │ ├── emacs.js │ │ │ │ ├── sublime.js │ │ │ │ └── vim.js │ │ │ ├── mode │ │ │ │ ├── apl │ │ │ │ │ └── apl.js │ │ │ │ ├── asciiarmor │ │ │ │ │ └── asciiarmor.js │ │ │ │ ├── asn.1 │ │ │ │ │ └── asn.1.js │ │ │ │ ├── asterisk │ │ │ │ │ └── asterisk.js │ │ │ │ ├── brainfuck │ │ │ │ │ └── brainfuck.js │ │ │ │ ├── clike │ │ │ │ │ └── clike.js │ │ │ │ ├── clojure │ │ │ │ │ └── clojure.js │ │ │ │ ├── cmake │ │ │ │ │ └── cmake.js │ │ │ │ ├── cobol │ │ │ │ │ └── cobol.js │ │ │ │ ├── coffeescript │ │ │ │ │ └── coffeescript.js │ │ │ │ ├── commonlisp │ │ │ │ │ └── commonlisp.js │ │ │ │ ├── crystal │ │ │ │ │ └── crystal.js │ │ │ │ ├── css │ │ │ │ │ └── css.js │ │ │ │ ├── cypher │ │ │ │ │ └── cypher.js │ │ │ │ ├── d │ │ │ │ │ └── d.js │ │ │ │ ├── dart │ │ │ │ │ └── dart.js │ │ │ │ ├── diff │ │ │ │ │ └── diff.js │ │ │ │ ├── django │ │ │ │ │ └── django.js │ │ │ │ ├── dockerfile │ │ │ │ │ └── dockerfile.js │ │ │ │ ├── dtd │ │ │ │ │ └── dtd.js │ │ │ │ ├── dylan │ │ │ │ │ └── dylan.js │ │ │ │ ├── ebnf │ │ │ │ │ └── ebnf.js │ │ │ │ ├── ecl │ │ │ │ │ └── ecl.js │ │ │ │ ├── eiffel │ │ │ │ │ └── eiffel.js │ │ │ │ ├── elm │ │ │ │ │ └── elm.js │ │ │ │ ├── erlang │ │ │ │ │ └── erlang.js │ │ │ │ ├── factor │ │ │ │ │ └── factor.js │ │ │ │ ├── fcl │ │ │ │ │ └── fcl.js │ │ │ │ ├── forth │ │ │ │ │ └── forth.js │ │ │ │ ├── fortran │ │ │ │ │ └── fortran.js │ │ │ │ ├── gas │ │ │ │ │ └── gas.js │ │ │ │ ├── gfm │ │ │ │ │ └── gfm.js │ │ │ │ ├── gherkin │ │ │ │ │ └── gherkin.js │ │ │ │ ├── go │ │ │ │ │ └── go.js │ │ │ │ ├── groovy │ │ │ │ │ └── groovy.js │ │ │ │ ├── haml │ │ │ │ │ └── haml.js │ │ │ │ ├── handlebars │ │ │ │ │ └── handlebars.js │ │ │ │ ├── haskell-literate │ │ │ │ │ └── haskell-literate.js │ │ │ │ ├── haskell │ │ │ │ │ └── haskell.js │ │ │ │ ├── haxe │ │ │ │ │ └── haxe.js │ │ │ │ ├── htmlembedded │ │ │ │ │ └── htmlembedded.js │ │ │ │ ├── htmlmixed │ │ │ │ │ └── htmlmixed.js │ │ │ │ ├── http │ │ │ │ │ └── http.js │ │ │ │ ├── idl │ │ │ │ │ └── idl.js │ │ │ │ ├── javascript │ │ │ │ │ └── javascript.js │ │ │ │ ├── jinja2 │ │ │ │ │ └── jinja2.js │ │ │ │ ├── jsx │ │ │ │ │ └── jsx.js │ │ │ │ ├── julia │ │ │ │ │ └── julia.js │ │ │ │ ├── livescript │ │ │ │ │ └── livescript.js │ │ │ │ ├── lua │ │ │ │ │ └── lua.js │ │ │ │ ├── markdown │ │ │ │ │ └── markdown.js │ │ │ │ ├── mathematica │ │ │ │ │ └── mathematica.js │ │ │ │ ├── mbox │ │ │ │ │ └── mbox.js │ │ │ │ ├── meta.js │ │ │ │ ├── mirc │ │ │ │ │ └── mirc.js │ │ │ │ ├── mllike │ │ │ │ │ └── mllike.js │ │ │ │ ├── modelica │ │ │ │ │ └── modelica.js │ │ │ │ ├── mscgen │ │ │ │ │ └── mscgen.js │ │ │ │ ├── mumps │ │ │ │ │ └── mumps.js │ │ │ │ ├── nginx │ │ │ │ │ └── nginx.js │ │ │ │ ├── nsis │ │ │ │ │ └── nsis.js │ │ │ │ ├── ntriples │ │ │ │ │ └── ntriples.js │ │ │ │ ├── octave │ │ │ │ │ └── octave.js │ │ │ │ ├── oz │ │ │ │ │ └── oz.js │ │ │ │ ├── pascal │ │ │ │ │ └── pascal.js │ │ │ │ ├── pegjs │ │ │ │ │ └── pegjs.js │ │ │ │ ├── perl │ │ │ │ │ └── perl.js │ │ │ │ ├── php │ │ │ │ │ └── php.js │ │ │ │ ├── pig │ │ │ │ │ └── pig.js │ │ │ │ ├── powershell │ │ │ │ │ └── powershell.js │ │ │ │ ├── properties │ │ │ │ │ └── properties.js │ │ │ │ ├── protobuf │ │ │ │ │ └── protobuf.js │ │ │ │ ├── pug │ │ │ │ │ └── pug.js │ │ │ │ ├── puppet │ │ │ │ │ └── puppet.js │ │ │ │ ├── python │ │ │ │ │ └── python.js │ │ │ │ ├── q │ │ │ │ │ └── q.js │ │ │ │ ├── r │ │ │ │ │ └── r.js │ │ │ │ ├── rpm │ │ │ │ │ └── rpm.js │ │ │ │ ├── rst │ │ │ │ │ └── rst.js │ │ │ │ ├── ruby │ │ │ │ │ └── ruby.js │ │ │ │ ├── rust │ │ │ │ │ └── rust.js │ │ │ │ ├── sas │ │ │ │ │ └── sas.js │ │ │ │ ├── sass │ │ │ │ │ └── sass.js │ │ │ │ ├── scheme │ │ │ │ │ └── scheme.js │ │ │ │ ├── shell │ │ │ │ │ └── shell.js │ │ │ │ ├── sieve │ │ │ │ │ └── sieve.js │ │ │ │ ├── slim │ │ │ │ │ └── slim.js │ │ │ │ ├── smalltalk │ │ │ │ │ └── smalltalk.js │ │ │ │ ├── smarty │ │ │ │ │ └── smarty.js │ │ │ │ ├── solr │ │ │ │ │ └── solr.js │ │ │ │ ├── soy │ │ │ │ │ └── soy.js │ │ │ │ ├── sparql │ │ │ │ │ └── sparql.js │ │ │ │ ├── spreadsheet │ │ │ │ │ └── spreadsheet.js │ │ │ │ ├── sql │ │ │ │ │ └── sql.js │ │ │ │ ├── stex │ │ │ │ │ └── stex.js │ │ │ │ ├── stylus │ │ │ │ │ └── stylus.js │ │ │ │ ├── swift │ │ │ │ │ └── swift.js │ │ │ │ ├── tcl │ │ │ │ │ └── tcl.js │ │ │ │ ├── textile │ │ │ │ │ └── textile.js │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ ├── tiki │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ ├── toml │ │ │ │ │ └── toml.js │ │ │ │ ├── tornado │ │ │ │ │ └── tornado.js │ │ │ │ ├── troff │ │ │ │ │ └── troff.js │ │ │ │ ├── ttcn-cfg │ │ │ │ │ └── ttcn-cfg.js │ │ │ │ ├── ttcn │ │ │ │ │ └── ttcn.js │ │ │ │ ├── turtle │ │ │ │ │ └── turtle.js │ │ │ │ ├── twig │ │ │ │ │ └── twig.js │ │ │ │ ├── vb │ │ │ │ │ └── vb.js │ │ │ │ ├── vbscript │ │ │ │ │ └── vbscript.js │ │ │ │ ├── velocity │ │ │ │ │ └── velocity.js │ │ │ │ ├── verilog │ │ │ │ │ └── verilog.js │ │ │ │ ├── vhdl │ │ │ │ │ └── vhdl.js │ │ │ │ ├── vue │ │ │ │ │ └── vue.js │ │ │ │ ├── wast │ │ │ │ │ └── wast.js │ │ │ │ ├── webidl │ │ │ │ │ └── webidl.js │ │ │ │ ├── xml │ │ │ │ │ └── xml.js │ │ │ │ ├── xquery │ │ │ │ │ └── xquery.js │ │ │ │ ├── yacas │ │ │ │ │ └── yacas.js │ │ │ │ ├── yaml-frontmatter │ │ │ │ │ └── yaml-frontmatter.js │ │ │ │ ├── yaml │ │ │ │ │ └── yaml.js │ │ │ │ └── z80 │ │ │ │ │ └── z80.js │ │ │ └── theme │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── abbott.css │ │ │ │ ├── abcdef.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── ayu-dark.css │ │ │ │ ├── ayu-mirage.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── bespin.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── colorforth.css │ │ │ │ ├── darcula.css │ │ │ │ ├── dracula.css │ │ │ │ ├── duotone-dark.css │ │ │ │ ├── duotone-light.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── gruvbox-dark.css │ │ │ │ ├── hopscotch.css │ │ │ │ ├── icecoder.css │ │ │ │ ├── idea.css │ │ │ │ ├── isotope.css │ │ │ │ ├── juejin.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── liquibyte.css │ │ │ │ ├── lucario.css │ │ │ │ ├── material-darker.css │ │ │ │ ├── material-ocean.css │ │ │ │ ├── material-palenight.css │ │ │ │ ├── material.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── moxer.css │ │ │ │ ├── neat.css │ │ │ │ ├── neo.css │ │ │ │ ├── night.css │ │ │ │ ├── nord.css │ │ │ │ ├── oceanic-next.css │ │ │ │ ├── panda-syntax.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── railscasts.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── seti.css │ │ │ │ ├── shadowfox.css │ │ │ │ ├── solarized.css │ │ │ │ ├── ssms.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── ttcn.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ ├── xq-light.css │ │ │ │ ├── yeti.css │ │ │ │ ├── yonce.css │ │ │ │ └── zenburn.css │ │ │ ├── datatables-autofill │ │ │ ├── css │ │ │ │ ├── autoFill.bootstrap4.css │ │ │ │ └── autoFill.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── autoFill.bootstrap4.js │ │ │ │ ├── autoFill.bootstrap4.min.js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ │ ├── datatables-bs4 │ │ │ ├── css │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ └── dataTables.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ └── dataTables.bootstrap4.min.js │ │ │ ├── datatables-buttons │ │ │ ├── css │ │ │ │ ├── buttons.bootstrap4.css │ │ │ │ └── buttons.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── buttons.bootstrap4.js │ │ │ │ ├── buttons.bootstrap4.min.js │ │ │ │ ├── buttons.colVis.js │ │ │ │ ├── buttons.colVis.min.js │ │ │ │ ├── buttons.flash.js │ │ │ │ ├── buttons.flash.min.js │ │ │ │ ├── buttons.html5.js │ │ │ │ ├── buttons.html5.min.js │ │ │ │ ├── buttons.print.js │ │ │ │ ├── buttons.print.min.js │ │ │ │ ├── dataTables.buttons.js │ │ │ │ └── dataTables.buttons.min.js │ │ │ ├── datatables-colreorder │ │ │ ├── css │ │ │ │ ├── colReorder.bootstrap4.css │ │ │ │ └── colReorder.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── colReorder.bootstrap4.js │ │ │ │ ├── colReorder.bootstrap4.min.js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ │ ├── datatables-fixedcolumns │ │ │ ├── css │ │ │ │ ├── fixedColumns.bootstrap4.css │ │ │ │ └── fixedColumns.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ ├── dataTables.fixedColumns.min.js │ │ │ │ ├── fixedColumns.bootstrap4.js │ │ │ │ └── fixedColumns.bootstrap4.min.js │ │ │ ├── datatables-fixedheader │ │ │ ├── css │ │ │ │ ├── fixedHeader.bootstrap4.css │ │ │ │ └── fixedHeader.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ ├── dataTables.fixedHeader.min.js │ │ │ │ ├── fixedHeader.bootstrap4.js │ │ │ │ └── fixedHeader.bootstrap4.min.js │ │ │ ├── datatables-keytable │ │ │ ├── css │ │ │ │ ├── keyTable.bootstrap4.css │ │ │ │ └── keyTable.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ ├── dataTables.keyTable.min.js │ │ │ │ ├── keyTable.bootstrap4.js │ │ │ │ └── keyTable.bootstrap4.min.js │ │ │ ├── datatables-responsive │ │ │ ├── css │ │ │ │ ├── responsive.bootstrap4.css │ │ │ │ └── responsive.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ ├── dataTables.responsive.min.js │ │ │ │ ├── responsive.bootstrap4.js │ │ │ │ └── responsive.bootstrap4.min.js │ │ │ ├── datatables-rowgroup │ │ │ ├── css │ │ │ │ ├── rowGroup.bootstrap4.css │ │ │ │ └── rowGroup.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.rowGroup.js │ │ │ │ ├── dataTables.rowGroup.min.js │ │ │ │ ├── rowGroup.bootstrap4.js │ │ │ │ └── rowGroup.bootstrap4.min.js │ │ │ ├── datatables-rowreorder │ │ │ ├── css │ │ │ │ ├── rowReorder.bootstrap4.css │ │ │ │ └── rowReorder.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.rowReorder.js │ │ │ │ ├── dataTables.rowReorder.min.js │ │ │ │ ├── rowReorder.bootstrap4.js │ │ │ │ └── rowReorder.bootstrap4.min.js │ │ │ ├── datatables-scroller │ │ │ ├── css │ │ │ │ ├── scroller.bootstrap4.css │ │ │ │ └── scroller.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ ├── dataTables.scroller.min.js │ │ │ │ ├── scroller.bootstrap4.js │ │ │ │ └── scroller.bootstrap4.min.js │ │ │ ├── datatables-searchbuilder │ │ │ ├── css │ │ │ │ ├── searchBuilder.bootstrap4.css │ │ │ │ └── searchBuilder.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.searchBuilder.js │ │ │ │ ├── dataTables.searchBuilder.min.js │ │ │ │ ├── searchBuilder.bootstrap4.js │ │ │ │ └── searchBuilder.bootstrap4.min.js │ │ │ ├── datatables-searchpanes │ │ │ ├── css │ │ │ │ ├── searchPanes.bootstrap4.css │ │ │ │ └── searchPanes.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.searchPanes.js │ │ │ │ ├── dataTables.searchPanes.min.js │ │ │ │ ├── searchPanes.bootstrap4.js │ │ │ │ └── searchPanes.bootstrap4.min.js │ │ │ ├── datatables-select │ │ │ ├── css │ │ │ │ ├── select.bootstrap4.css │ │ │ │ └── select.bootstrap4.min.css │ │ │ └── js │ │ │ │ ├── dataTables.select.js │ │ │ │ ├── dataTables.select.min.js │ │ │ │ ├── select.bootstrap4.js │ │ │ │ └── select.bootstrap4.min.js │ │ │ ├── datatables │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ │ │ ├── daterangepicker │ │ │ ├── daterangepicker.css │ │ │ └── daterangepicker.js │ │ │ ├── dropzone │ │ │ ├── basic.css │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone.css │ │ │ ├── dropzone.js │ │ │ ├── dropzone.js.map │ │ │ └── min │ │ │ │ ├── basic.css │ │ │ │ ├── basic.min.css │ │ │ │ ├── dropzone-amd-module.min.js │ │ │ │ ├── dropzone.css │ │ │ │ ├── dropzone.min.css │ │ │ │ └── dropzone.min.js │ │ │ ├── ekko-lightbox │ │ │ ├── ekko-lightbox.css │ │ │ ├── ekko-lightbox.js │ │ │ ├── ekko-lightbox.js.map │ │ │ ├── ekko-lightbox.min.js │ │ │ └── ekko-lightbox.min.js.map │ │ │ ├── fastclick │ │ │ └── fastclick.js │ │ │ ├── filterizr │ │ │ ├── filterizr.min.js │ │ │ ├── jquery.filterizr.min.js │ │ │ └── vanilla.filterizr.min.js │ │ │ ├── flag-icon-css │ │ │ ├── css │ │ │ │ ├── flag-icon.css │ │ │ │ └── flag-icon.min.css │ │ │ └── flags │ │ │ │ ├── 1x1 │ │ │ │ ├── ad.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── af.svg │ │ │ │ ├── ag.svg │ │ │ │ ├── ai.svg │ │ │ │ ├── al.svg │ │ │ │ ├── am.svg │ │ │ │ ├── ao.svg │ │ │ │ ├── aq.svg │ │ │ │ ├── ar.svg │ │ │ │ ├── as.svg │ │ │ │ ├── at.svg │ │ │ │ ├── au.svg │ │ │ │ ├── aw.svg │ │ │ │ ├── ax.svg │ │ │ │ ├── az.svg │ │ │ │ ├── ba.svg │ │ │ │ ├── bb.svg │ │ │ │ ├── bd.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── bh.svg │ │ │ │ ├── bi.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── bm.svg │ │ │ │ ├── bn.svg │ │ │ │ ├── bo.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── br.svg │ │ │ │ ├── bs.svg │ │ │ │ ├── bt.svg │ │ │ │ ├── bv.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── by.svg │ │ │ │ ├── bz.svg │ │ │ │ ├── ca.svg │ │ │ │ ├── cc.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── cf.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── ck.svg │ │ │ │ ├── cl.svg │ │ │ │ ├── cm.svg │ │ │ │ ├── cn.svg │ │ │ │ ├── co.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── cu.svg │ │ │ │ ├── cv.svg │ │ │ │ ├── cw.svg │ │ │ │ ├── cx.svg │ │ │ │ ├── cy.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── de.svg │ │ │ │ ├── dj.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── dm.svg │ │ │ │ ├── do.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── ec.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── eg.svg │ │ │ │ ├── eh.svg │ │ │ │ ├── er.svg │ │ │ │ ├── es-ca.svg │ │ │ │ ├── es-ga.svg │ │ │ │ ├── es.svg │ │ │ │ ├── et.svg │ │ │ │ ├── eu.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── fj.svg │ │ │ │ ├── fk.svg │ │ │ │ ├── fm.svg │ │ │ │ ├── fo.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── gb-eng.svg │ │ │ │ ├── gb-nir.svg │ │ │ │ ├── gb-sct.svg │ │ │ │ ├── gb-wls.svg │ │ │ │ ├── gb.svg │ │ │ │ ├── gd.svg │ │ │ │ ├── ge.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── gi.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── gm.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── gq.svg │ │ │ │ ├── gr.svg │ │ │ │ ├── gs.svg │ │ │ │ ├── gt.svg │ │ │ │ ├── gu.svg │ │ │ │ ├── gw.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── hk.svg │ │ │ │ ├── hm.svg │ │ │ │ ├── hn.svg │ │ │ │ ├── hr.svg │ │ │ │ ├── ht.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── id.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── il.svg │ │ │ │ ├── im.svg │ │ │ │ ├── in.svg │ │ │ │ ├── io.svg │ │ │ │ ├── iq.svg │ │ │ │ ├── ir.svg │ │ │ │ ├── is.svg │ │ │ │ ├── it.svg │ │ │ │ ├── je.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── jo.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── ke.svg │ │ │ │ ├── kg.svg │ │ │ │ ├── kh.svg │ │ │ │ ├── ki.svg │ │ │ │ ├── km.svg │ │ │ │ ├── kn.svg │ │ │ │ ├── kp.svg │ │ │ │ ├── kr.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── ky.svg │ │ │ │ ├── kz.svg │ │ │ │ ├── la.svg │ │ │ │ ├── lb.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── li.svg │ │ │ │ ├── lk.svg │ │ │ │ ├── lr.svg │ │ │ │ ├── ls.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── ly.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── md.svg │ │ │ │ ├── me.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── mh.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── mm.svg │ │ │ │ ├── mn.svg │ │ │ │ ├── mo.svg │ │ │ │ ├── mp.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── ms.svg │ │ │ │ ├── mt.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── mw.svg │ │ │ │ ├── mx.svg │ │ │ │ ├── my.svg │ │ │ │ ├── mz.svg │ │ │ │ ├── na.svg │ │ │ │ ├── nc.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── nf.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── ni.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── no.svg │ │ │ │ ├── np.svg │ │ │ │ ├── nr.svg │ │ │ │ ├── nu.svg │ │ │ │ ├── nz.svg │ │ │ │ ├── om.svg │ │ │ │ ├── pa.svg │ │ │ │ ├── pe.svg │ │ │ │ ├── pf.svg │ │ │ │ ├── pg.svg │ │ │ │ ├── ph.svg │ │ │ │ ├── pk.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── pn.svg │ │ │ │ ├── pr.svg │ │ │ │ ├── ps.svg │ │ │ │ ├── pt.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── py.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── re.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── rs.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── rw.svg │ │ │ │ ├── sa.svg │ │ │ │ ├── sb.svg │ │ │ │ ├── sc.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── se.svg │ │ │ │ ├── sg.svg │ │ │ │ ├── sh.svg │ │ │ │ ├── si.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── sk.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── sm.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── so.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── st.svg │ │ │ │ ├── sv.svg │ │ │ │ ├── sx.svg │ │ │ │ ├── sy.svg │ │ │ │ ├── sz.svg │ │ │ │ ├── tc.svg │ │ │ │ ├── td.svg │ │ │ │ ├── tf.svg │ │ │ │ ├── tg.svg │ │ │ │ ├── th.svg │ │ │ │ ├── tj.svg │ │ │ │ ├── tk.svg │ │ │ │ ├── tl.svg │ │ │ │ ├── tm.svg │ │ │ │ ├── tn.svg │ │ │ │ ├── to.svg │ │ │ │ ├── tr.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── tw.svg │ │ │ │ ├── tz.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── ug.svg │ │ │ │ ├── um.svg │ │ │ │ ├── un.svg │ │ │ │ ├── us.svg │ │ │ │ ├── uy.svg │ │ │ │ ├── uz.svg │ │ │ │ ├── va.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── ve.svg │ │ │ │ ├── vg.svg │ │ │ │ ├── vi.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── vu.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── ws.svg │ │ │ │ ├── xk.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── za.svg │ │ │ │ ├── zm.svg │ │ │ │ └── zw.svg │ │ │ │ └── 4x3 │ │ │ │ ├── ad.svg │ │ │ │ ├── ae.svg │ │ │ │ ├── af.svg │ │ │ │ ├── ag.svg │ │ │ │ ├── ai.svg │ │ │ │ ├── al.svg │ │ │ │ ├── am.svg │ │ │ │ ├── ao.svg │ │ │ │ ├── aq.svg │ │ │ │ ├── ar.svg │ │ │ │ ├── as.svg │ │ │ │ ├── at.svg │ │ │ │ ├── au.svg │ │ │ │ ├── aw.svg │ │ │ │ ├── ax.svg │ │ │ │ ├── az.svg │ │ │ │ ├── ba.svg │ │ │ │ ├── bb.svg │ │ │ │ ├── bd.svg │ │ │ │ ├── be.svg │ │ │ │ ├── bf.svg │ │ │ │ ├── bg.svg │ │ │ │ ├── bh.svg │ │ │ │ ├── bi.svg │ │ │ │ ├── bj.svg │ │ │ │ ├── bl.svg │ │ │ │ ├── bm.svg │ │ │ │ ├── bn.svg │ │ │ │ ├── bo.svg │ │ │ │ ├── bq.svg │ │ │ │ ├── br.svg │ │ │ │ ├── bs.svg │ │ │ │ ├── bt.svg │ │ │ │ ├── bv.svg │ │ │ │ ├── bw.svg │ │ │ │ ├── by.svg │ │ │ │ ├── bz.svg │ │ │ │ ├── ca.svg │ │ │ │ ├── cc.svg │ │ │ │ ├── cd.svg │ │ │ │ ├── cf.svg │ │ │ │ ├── cg.svg │ │ │ │ ├── ch.svg │ │ │ │ ├── ci.svg │ │ │ │ ├── ck.svg │ │ │ │ ├── cl.svg │ │ │ │ ├── cm.svg │ │ │ │ ├── cn.svg │ │ │ │ ├── co.svg │ │ │ │ ├── cr.svg │ │ │ │ ├── cu.svg │ │ │ │ ├── cv.svg │ │ │ │ ├── cw.svg │ │ │ │ ├── cx.svg │ │ │ │ ├── cy.svg │ │ │ │ ├── cz.svg │ │ │ │ ├── de.svg │ │ │ │ ├── dj.svg │ │ │ │ ├── dk.svg │ │ │ │ ├── dm.svg │ │ │ │ ├── do.svg │ │ │ │ ├── dz.svg │ │ │ │ ├── ec.svg │ │ │ │ ├── ee.svg │ │ │ │ ├── eg.svg │ │ │ │ ├── eh.svg │ │ │ │ ├── er.svg │ │ │ │ ├── es-ca.svg │ │ │ │ ├── es-ga.svg │ │ │ │ ├── es.svg │ │ │ │ ├── et.svg │ │ │ │ ├── eu.svg │ │ │ │ ├── fi.svg │ │ │ │ ├── fj.svg │ │ │ │ ├── fk.svg │ │ │ │ ├── fm.svg │ │ │ │ ├── fo.svg │ │ │ │ ├── fr.svg │ │ │ │ ├── ga.svg │ │ │ │ ├── gb-eng.svg │ │ │ │ ├── gb-nir.svg │ │ │ │ ├── gb-sct.svg │ │ │ │ ├── gb-wls.svg │ │ │ │ ├── gb.svg │ │ │ │ ├── gd.svg │ │ │ │ ├── ge.svg │ │ │ │ ├── gf.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── gh.svg │ │ │ │ ├── gi.svg │ │ │ │ ├── gl.svg │ │ │ │ ├── gm.svg │ │ │ │ ├── gn.svg │ │ │ │ ├── gp.svg │ │ │ │ ├── gq.svg │ │ │ │ ├── gr.svg │ │ │ │ ├── gs.svg │ │ │ │ ├── gt.svg │ │ │ │ ├── gu.svg │ │ │ │ ├── gw.svg │ │ │ │ ├── gy.svg │ │ │ │ ├── hk.svg │ │ │ │ ├── hm.svg │ │ │ │ ├── hn.svg │ │ │ │ ├── hr.svg │ │ │ │ ├── ht.svg │ │ │ │ ├── hu.svg │ │ │ │ ├── id.svg │ │ │ │ ├── ie.svg │ │ │ │ ├── il.svg │ │ │ │ ├── im.svg │ │ │ │ ├── in.svg │ │ │ │ ├── io.svg │ │ │ │ ├── iq.svg │ │ │ │ ├── ir.svg │ │ │ │ ├── is.svg │ │ │ │ ├── it.svg │ │ │ │ ├── je.svg │ │ │ │ ├── jm.svg │ │ │ │ ├── jo.svg │ │ │ │ ├── jp.svg │ │ │ │ ├── ke.svg │ │ │ │ ├── kg.svg │ │ │ │ ├── kh.svg │ │ │ │ ├── ki.svg │ │ │ │ ├── km.svg │ │ │ │ ├── kn.svg │ │ │ │ ├── kp.svg │ │ │ │ ├── kr.svg │ │ │ │ ├── kw.svg │ │ │ │ ├── ky.svg │ │ │ │ ├── kz.svg │ │ │ │ ├── la.svg │ │ │ │ ├── lb.svg │ │ │ │ ├── lc.svg │ │ │ │ ├── li.svg │ │ │ │ ├── lk.svg │ │ │ │ ├── lr.svg │ │ │ │ ├── ls.svg │ │ │ │ ├── lt.svg │ │ │ │ ├── lu.svg │ │ │ │ ├── lv.svg │ │ │ │ ├── ly.svg │ │ │ │ ├── ma.svg │ │ │ │ ├── mc.svg │ │ │ │ ├── md.svg │ │ │ │ ├── me.svg │ │ │ │ ├── mf.svg │ │ │ │ ├── mg.svg │ │ │ │ ├── mh.svg │ │ │ │ ├── mk.svg │ │ │ │ ├── ml.svg │ │ │ │ ├── mm.svg │ │ │ │ ├── mn.svg │ │ │ │ ├── mo.svg │ │ │ │ ├── mp.svg │ │ │ │ ├── mq.svg │ │ │ │ ├── mr.svg │ │ │ │ ├── ms.svg │ │ │ │ ├── mt.svg │ │ │ │ ├── mu.svg │ │ │ │ ├── mv.svg │ │ │ │ ├── mw.svg │ │ │ │ ├── mx.svg │ │ │ │ ├── my.svg │ │ │ │ ├── mz.svg │ │ │ │ ├── na.svg │ │ │ │ ├── nc.svg │ │ │ │ ├── ne.svg │ │ │ │ ├── nf.svg │ │ │ │ ├── ng.svg │ │ │ │ ├── ni.svg │ │ │ │ ├── nl.svg │ │ │ │ ├── no.svg │ │ │ │ ├── np.svg │ │ │ │ ├── nr.svg │ │ │ │ ├── nu.svg │ │ │ │ ├── nz.svg │ │ │ │ ├── om.svg │ │ │ │ ├── pa.svg │ │ │ │ ├── pe.svg │ │ │ │ ├── pf.svg │ │ │ │ ├── pg.svg │ │ │ │ ├── ph.svg │ │ │ │ ├── pk.svg │ │ │ │ ├── pl.svg │ │ │ │ ├── pm.svg │ │ │ │ ├── pn.svg │ │ │ │ ├── pr.svg │ │ │ │ ├── ps.svg │ │ │ │ ├── pt.svg │ │ │ │ ├── pw.svg │ │ │ │ ├── py.svg │ │ │ │ ├── qa.svg │ │ │ │ ├── re.svg │ │ │ │ ├── ro.svg │ │ │ │ ├── rs.svg │ │ │ │ ├── ru.svg │ │ │ │ ├── rw.svg │ │ │ │ ├── sa.svg │ │ │ │ ├── sb.svg │ │ │ │ ├── sc.svg │ │ │ │ ├── sd.svg │ │ │ │ ├── se.svg │ │ │ │ ├── sg.svg │ │ │ │ ├── sh.svg │ │ │ │ ├── si.svg │ │ │ │ ├── sj.svg │ │ │ │ ├── sk.svg │ │ │ │ ├── sl.svg │ │ │ │ ├── sm.svg │ │ │ │ ├── sn.svg │ │ │ │ ├── so.svg │ │ │ │ ├── sr.svg │ │ │ │ ├── ss.svg │ │ │ │ ├── st.svg │ │ │ │ ├── sv.svg │ │ │ │ ├── sx.svg │ │ │ │ ├── sy.svg │ │ │ │ ├── sz.svg │ │ │ │ ├── tc.svg │ │ │ │ ├── td.svg │ │ │ │ ├── tf.svg │ │ │ │ ├── tg.svg │ │ │ │ ├── th.svg │ │ │ │ ├── tj.svg │ │ │ │ ├── tk.svg │ │ │ │ ├── tl.svg │ │ │ │ ├── tm.svg │ │ │ │ ├── tn.svg │ │ │ │ ├── to.svg │ │ │ │ ├── tr.svg │ │ │ │ ├── tt.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── tw.svg │ │ │ │ ├── tz.svg │ │ │ │ ├── ua.svg │ │ │ │ ├── ug.svg │ │ │ │ ├── um.svg │ │ │ │ ├── un.svg │ │ │ │ ├── us.svg │ │ │ │ ├── uy.svg │ │ │ │ ├── uz.svg │ │ │ │ ├── va.svg │ │ │ │ ├── vc.svg │ │ │ │ ├── ve.svg │ │ │ │ ├── vg.svg │ │ │ │ ├── vi.svg │ │ │ │ ├── vn.svg │ │ │ │ ├── vu.svg │ │ │ │ ├── wf.svg │ │ │ │ ├── ws.svg │ │ │ │ ├── xk.svg │ │ │ │ ├── ye.svg │ │ │ │ ├── yt.svg │ │ │ │ ├── za.svg │ │ │ │ ├── zm.svg │ │ │ │ └── zw.svg │ │ │ ├── flot │ │ │ ├── jquery.flot.js │ │ │ └── plugins │ │ │ │ ├── jquery.flot.axislabels.js │ │ │ │ ├── jquery.flot.browser.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.composeImages.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.drawSeries.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.flatdata.js │ │ │ │ ├── jquery.flot.hover.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.legend.js │ │ │ │ ├── jquery.flot.logaxis.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.saturated.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ ├── jquery.flot.touch.js │ │ │ │ ├── jquery.flot.touchNavigate.js │ │ │ │ └── jquery.flot.uiConstants.js │ │ │ ├── fontawesome-free │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── fullcalendar │ │ │ ├── LICENSE.txt │ │ │ ├── locales-all.js │ │ │ ├── locales-all.min.js │ │ │ ├── locales │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lb.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sm.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── ta-in.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── main.css │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ └── main.min.js │ │ │ ├── icheck-bootstrap │ │ │ ├── LICENSE │ │ │ ├── icheck-bootstrap.css │ │ │ └── icheck-bootstrap.min.css │ │ │ ├── inputmask │ │ │ ├── inputmask.js │ │ │ ├── inputmask.min.js │ │ │ ├── jquery.inputmask.js │ │ │ └── jquery.inputmask.min.js │ │ │ ├── ion-rangeslider │ │ │ ├── License.md │ │ │ ├── css │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ └── ion.rangeSlider.min.css │ │ │ └── js │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ └── ion.rangeSlider.min.js │ │ │ ├── jquery-knob │ │ │ └── jquery.knob.min.js │ │ │ ├── jquery-mapael │ │ │ ├── jquery.mapael.js │ │ │ ├── jquery.mapael.min.js │ │ │ └── maps │ │ │ │ ├── README.txt │ │ │ │ ├── france_departments.js │ │ │ │ ├── france_departments.min.js │ │ │ │ ├── usa_states.js │ │ │ │ ├── usa_states.min.js │ │ │ │ ├── world_countries.js │ │ │ │ ├── world_countries.min.js │ │ │ │ ├── world_countries_mercator.js │ │ │ │ ├── world_countries_mercator.min.js │ │ │ │ ├── world_countries_miller.js │ │ │ │ └── world_countries_miller.min.js │ │ │ ├── jquery-mousewheel │ │ │ ├── LICENSE.txt │ │ │ └── jquery.mousewheel.js │ │ │ ├── jquery-ui │ │ │ ├── LICENSE.txt │ │ │ ├── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ └── jquery-ui.theme.min.css │ │ │ ├── jquery-validation │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ │ ├── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ ├── jqvmap │ │ │ ├── jquery.vmap.js │ │ │ ├── jquery.vmap.min.js │ │ │ ├── jqvmap.css │ │ │ ├── jqvmap.min.css │ │ │ └── maps │ │ │ │ ├── continents │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ ├── jquery.vmap.croatia.js │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ ├── jquery.vmap.indonesia.js │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ ├── jquery.vmap.new_regions_france.js │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ ├── jquery.vmap.serbia.js │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ ├── jquery.vmap.ukraine.js │ │ │ │ ├── jquery.vmap.usa.counties.js │ │ │ │ ├── jquery.vmap.usa.districts.js │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ └── jquery.vmap.world.js │ │ │ ├── jsgrid │ │ │ ├── demos │ │ │ │ └── db.js │ │ │ ├── i18n │ │ │ │ ├── jsgrid-de.js │ │ │ │ ├── jsgrid-es.js │ │ │ │ ├── jsgrid-fr.js │ │ │ │ ├── jsgrid-he.js │ │ │ │ ├── jsgrid-ja.js │ │ │ │ ├── jsgrid-ka.js │ │ │ │ ├── jsgrid-pl.js │ │ │ │ ├── jsgrid-pt-br.js │ │ │ │ ├── jsgrid-pt.js │ │ │ │ ├── jsgrid-ru.js │ │ │ │ ├── jsgrid-tr.js │ │ │ │ ├── jsgrid-zh-cn.js │ │ │ │ └── jsgrid-zh-tw.js │ │ │ ├── jsgrid-theme.css │ │ │ ├── jsgrid-theme.min.css │ │ │ ├── jsgrid.css │ │ │ ├── jsgrid.js │ │ │ ├── jsgrid.min.css │ │ │ └── jsgrid.min.js │ │ │ ├── jszip │ │ │ ├── jszip.js │ │ │ └── jszip.min.js │ │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-SG.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── locales.min.js.map │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ ├── moment-with-locales.min.js.map │ │ │ ├── moment.min.js │ │ │ └── moment.min.js.map │ │ │ ├── overlayScrollbars │ │ │ ├── css │ │ │ │ ├── OverlayScrollbars.css │ │ │ │ └── OverlayScrollbars.min.css │ │ │ └── js │ │ │ │ ├── OverlayScrollbars.js │ │ │ │ ├── OverlayScrollbars.min.js │ │ │ │ ├── jquery.overlayScrollbars.js │ │ │ │ └── jquery.overlayScrollbars.min.js │ │ │ ├── pace-progress │ │ │ ├── pace.js │ │ │ ├── pace.min.js │ │ │ └── themes │ │ │ │ ├── black │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── blue │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── green │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── orange │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── pink │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── purple │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── red │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── silver │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ ├── white │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ │ └── yellow │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ ├── pace-theme-flash.css │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ ├── pace-theme-material.css │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── pdfmake │ │ │ ├── pdfmake.js │ │ │ ├── pdfmake.js.map │ │ │ ├── pdfmake.min.js │ │ │ ├── pdfmake.min.js.map │ │ │ └── vfs_fonts.js │ │ │ ├── popper │ │ │ ├── esm │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ └── popper.min.js.map │ │ │ ├── popper-utils.js │ │ │ ├── popper-utils.js.map │ │ │ ├── popper-utils.min.js │ │ │ ├── popper-utils.min.js.map │ │ │ ├── popper.js │ │ │ ├── popper.js.map │ │ │ ├── popper.min.js │ │ │ ├── popper.min.js.map │ │ │ └── umd │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.flow │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ └── popper.min.js.map │ │ │ ├── raphael │ │ │ ├── Gruntfile.js │ │ │ ├── license.txt │ │ │ ├── raphael.js │ │ │ ├── raphael.min.js │ │ │ ├── raphael.no-deps.js │ │ │ └── raphael.no-deps.min.js │ │ │ ├── select2-bootstrap4-theme │ │ │ ├── select2-bootstrap4.css │ │ │ └── select2-bootstrap4.min.css │ │ │ ├── select2 │ │ │ ├── css │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── build.txt │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.js │ │ │ │ ├── select2.full.min.js │ │ │ │ ├── select2.js │ │ │ │ └── select2.min.js │ │ │ ├── sparklines │ │ │ ├── sparkline.js │ │ │ └── sparkline.mjs │ │ │ ├── summernote │ │ │ ├── font │ │ │ │ ├── summernote.eot │ │ │ │ ├── summernote.ttf │ │ │ │ ├── summernote.woff │ │ │ │ └── summernote.woff2 │ │ │ ├── lang │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ ├── summernote-ar-AR.min.js │ │ │ │ ├── summernote-ar-AR.min.js.LICENSE.txt │ │ │ │ ├── summernote-az-AZ.js │ │ │ │ ├── summernote-az-AZ.min.js │ │ │ │ ├── summernote-az-AZ.min.js.LICENSE.txt │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ ├── summernote-bg-BG.min.js │ │ │ │ ├── summernote-bg-BG.min.js.LICENSE.txt │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ ├── summernote-ca-ES.min.js │ │ │ │ ├── summernote-ca-ES.min.js.LICENSE.txt │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ ├── summernote-cs-CZ.min.js │ │ │ │ ├── summernote-cs-CZ.min.js.LICENSE.txt │ │ │ │ ├── summernote-da-DK.js │ │ │ │ ├── summernote-da-DK.min.js │ │ │ │ ├── summernote-da-DK.min.js.LICENSE.txt │ │ │ │ ├── summernote-de-DE.js │ │ │ │ ├── summernote-de-DE.min.js │ │ │ │ ├── summernote-de-DE.min.js.LICENSE.txt │ │ │ │ ├── summernote-el-GR.js │ │ │ │ ├── summernote-el-GR.min.js │ │ │ │ ├── summernote-el-GR.min.js.LICENSE.txt │ │ │ │ ├── summernote-es-ES.js │ │ │ │ ├── summernote-es-ES.min.js │ │ │ │ ├── summernote-es-ES.min.js.LICENSE.txt │ │ │ │ ├── summernote-es-EU.js │ │ │ │ ├── summernote-es-EU.min.js │ │ │ │ ├── summernote-es-EU.min.js.LICENSE.txt │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ ├── summernote-fa-IR.min.js │ │ │ │ ├── summernote-fa-IR.min.js.LICENSE.txt │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ ├── summernote-fi-FI.min.js │ │ │ │ ├── summernote-fi-FI.min.js.LICENSE.txt │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ ├── summernote-fr-FR.min.js │ │ │ │ ├── summernote-fr-FR.min.js.LICENSE.txt │ │ │ │ ├── summernote-gl-ES.js │ │ │ │ ├── summernote-gl-ES.min.js │ │ │ │ ├── summernote-gl-ES.min.js.LICENSE.txt │ │ │ │ ├── summernote-he-IL.js │ │ │ │ ├── summernote-he-IL.min.js │ │ │ │ ├── summernote-he-IL.min.js.LICENSE.txt │ │ │ │ ├── summernote-hr-HR.js │ │ │ │ ├── summernote-hr-HR.min.js │ │ │ │ ├── summernote-hr-HR.min.js.LICENSE.txt │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ ├── summernote-hu-HU.min.js │ │ │ │ ├── summernote-hu-HU.min.js.LICENSE.txt │ │ │ │ ├── summernote-id-ID.js │ │ │ │ ├── summernote-id-ID.min.js │ │ │ │ ├── summernote-id-ID.min.js.LICENSE.txt │ │ │ │ ├── summernote-it-IT.js │ │ │ │ ├── summernote-it-IT.min.js │ │ │ │ ├── summernote-it-IT.min.js.LICENSE.txt │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ ├── summernote-ja-JP.min.js │ │ │ │ ├── summernote-ja-JP.min.js.LICENSE.txt │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ ├── summernote-ko-KR.min.js │ │ │ │ ├── summernote-ko-KR.min.js.LICENSE.txt │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ ├── summernote-lt-LT.min.js │ │ │ │ ├── summernote-lt-LT.min.js.LICENSE.txt │ │ │ │ ├── summernote-lt-LV.js │ │ │ │ ├── summernote-lt-LV.min.js │ │ │ │ ├── summernote-lt-LV.min.js.LICENSE.txt │ │ │ │ ├── summernote-mn-MN.js │ │ │ │ ├── summernote-mn-MN.min.js │ │ │ │ ├── summernote-mn-MN.min.js.LICENSE.txt │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ ├── summernote-nb-NO.min.js │ │ │ │ ├── summernote-nb-NO.min.js.LICENSE.txt │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ ├── summernote-nl-NL.min.js │ │ │ │ ├── summernote-nl-NL.min.js.LICENSE.txt │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ ├── summernote-pl-PL.min.js │ │ │ │ ├── summernote-pl-PL.min.js.LICENSE.txt │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ ├── summernote-pt-BR.min.js │ │ │ │ ├── summernote-pt-BR.min.js.LICENSE.txt │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ ├── summernote-pt-PT.min.js │ │ │ │ ├── summernote-pt-PT.min.js.LICENSE.txt │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ ├── summernote-ro-RO.min.js │ │ │ │ ├── summernote-ro-RO.min.js.LICENSE.txt │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ ├── summernote-ru-RU.min.js │ │ │ │ ├── summernote-ru-RU.min.js.LICENSE.txt │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ ├── summernote-sk-SK.min.js │ │ │ │ ├── summernote-sk-SK.min.js.LICENSE.txt │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ ├── summernote-sl-SI.min.js │ │ │ │ ├── summernote-sl-SI.min.js.LICENSE.txt │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ │ ├── summernote-sr-RS-Latin.min.js.LICENSE.txt │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ ├── summernote-sr-RS.min.js │ │ │ │ ├── summernote-sr-RS.min.js.LICENSE.txt │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ ├── summernote-sv-SE.min.js │ │ │ │ ├── summernote-sv-SE.min.js.LICENSE.txt │ │ │ │ ├── summernote-ta-IN.js │ │ │ │ ├── summernote-ta-IN.min.js │ │ │ │ ├── summernote-ta-IN.min.js.LICENSE.txt │ │ │ │ ├── summernote-th-TH.js │ │ │ │ ├── summernote-th-TH.min.js │ │ │ │ ├── summernote-th-TH.min.js.LICENSE.txt │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ ├── summernote-tr-TR.min.js │ │ │ │ ├── summernote-tr-TR.min.js.LICENSE.txt │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ ├── summernote-uk-UA.min.js │ │ │ │ ├── summernote-uk-UA.min.js.LICENSE.txt │ │ │ │ ├── summernote-uz-UZ.js │ │ │ │ ├── summernote-uz-UZ.min.js │ │ │ │ ├── summernote-uz-UZ.min.js.LICENSE.txt │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ ├── summernote-vi-VN.min.js │ │ │ │ ├── summernote-vi-VN.min.js.LICENSE.txt │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ ├── summernote-zh-CN.min.js │ │ │ │ ├── summernote-zh-CN.min.js.LICENSE.txt │ │ │ │ ├── summernote-zh-TW.js │ │ │ │ ├── summernote-zh-TW.min.js │ │ │ │ └── summernote-zh-TW.min.js.LICENSE.txt │ │ │ ├── plugin │ │ │ │ ├── databasic │ │ │ │ │ ├── summernote-ext-databasic.css │ │ │ │ │ └── summernote-ext-databasic.js │ │ │ │ ├── hello │ │ │ │ │ └── summernote-ext-hello.js │ │ │ │ └── specialchars │ │ │ │ │ └── summernote-ext-specialchars.js │ │ │ ├── summernote-bs4.css │ │ │ ├── summernote-bs4.js │ │ │ ├── summernote-bs4.js.map │ │ │ ├── summernote-bs4.min.css │ │ │ ├── summernote-bs4.min.js │ │ │ ├── summernote-bs4.min.js.LICENSE.txt │ │ │ ├── summernote-bs4.min.js.map │ │ │ ├── summernote-lite.css │ │ │ ├── summernote-lite.js │ │ │ ├── summernote-lite.js.map │ │ │ ├── summernote-lite.min.css │ │ │ ├── summernote-lite.min.js │ │ │ ├── summernote-lite.min.js.LICENSE.txt │ │ │ ├── summernote-lite.min.js.map │ │ │ ├── summernote.css │ │ │ ├── summernote.js │ │ │ ├── summernote.js.map │ │ │ ├── summernote.min.css │ │ │ ├── summernote.min.js │ │ │ ├── summernote.min.js.LICENSE.txt │ │ │ └── summernote.min.js.map │ │ │ ├── sweetalert2-theme-bootstrap-4 │ │ │ ├── bootstrap-4.css │ │ │ └── bootstrap-4.min.css │ │ │ ├── sweetalert2 │ │ │ ├── sweetalert2.all.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.css │ │ │ ├── sweetalert2.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.min.js │ │ │ ├── tempusdominus-bootstrap-4 │ │ │ ├── css │ │ │ │ ├── tempusdominus-bootstrap-4.css │ │ │ │ └── tempusdominus-bootstrap-4.min.css │ │ │ └── js │ │ │ │ ├── tempusdominus-bootstrap-4.js │ │ │ │ └── tempusdominus-bootstrap-4.min.js │ │ │ ├── toastr │ │ │ ├── toastr.css │ │ │ ├── toastr.js.map │ │ │ ├── toastr.min.css │ │ │ └── toastr.min.js │ │ │ └── uplot │ │ │ ├── uPlot.cjs.js │ │ │ ├── uPlot.esm.js │ │ │ ├── uPlot.iife.js │ │ │ ├── uPlot.iife.min.js │ │ │ └── uPlot.min.css │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ │ ├── LICENSE.txt │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ └── jquery │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── user3-160x160.png └── WebAPIWithWindowsForm ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs └── WebAPIWithWindowsForm.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /Bussines/Abstract/IAppUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/IAppUserService.cs -------------------------------------------------------------------------------- /Bussines/Abstract/IAppUserTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/IAppUserTypeService.cs -------------------------------------------------------------------------------- /Bussines/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /Bussines/Abstract/ILanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/ILanguageService.cs -------------------------------------------------------------------------------- /Bussines/Abstract/IPageLanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/IPageLanguageService.cs -------------------------------------------------------------------------------- /Bussines/Abstract/IPageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/IPageService.cs -------------------------------------------------------------------------------- /Bussines/Abstract/IPageTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/IPageTypeService.cs -------------------------------------------------------------------------------- /Bussines/Abstract/IUploadImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Abstract/IUploadImageService.cs -------------------------------------------------------------------------------- /Bussines/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Business.csproj -------------------------------------------------------------------------------- /Bussines/Concrete/AppUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/AppUserService.cs -------------------------------------------------------------------------------- /Bussines/Concrete/AppUserTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/AppUserTypeService.cs -------------------------------------------------------------------------------- /Bussines/Concrete/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/AuthService.cs -------------------------------------------------------------------------------- /Bussines/Concrete/LanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/LanguageService.cs -------------------------------------------------------------------------------- /Bussines/Concrete/PageLanguageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/PageLanguageService.cs -------------------------------------------------------------------------------- /Bussines/Concrete/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/PageService.cs -------------------------------------------------------------------------------- /Bussines/Concrete/PageTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/PageTypeService.cs -------------------------------------------------------------------------------- /Bussines/Concrete/UploadImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Concrete/UploadImageService.cs -------------------------------------------------------------------------------- /Bussines/Constants/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Constants/Messages.cs -------------------------------------------------------------------------------- /Bussines/DependencyResolvers/AutofacModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/DependencyResolvers/AutofacModule.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/AppUserAddDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/AppUserAddDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/AppUserTypeAddDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/AppUserTypeAddDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/AppUserTypeUpdateDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/AppUserTypeUpdateDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/AppUserUpdateDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/AppUserUpdateDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/LoginDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/LoginDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/PageAddDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/PageAddDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/PagePageLanguageAddDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/PagePageLanguageAddDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/PagePageLanguageUpdateDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/PagePageLanguageUpdateDtoValidator.cs -------------------------------------------------------------------------------- /Bussines/Validations/FluentValidation/PageUpdateDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Bussines/Validations/FluentValidation/PageUpdateDtoValidator.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Aspects/Autofac/Caching/CacheAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Aspects/Autofac/Caching/CacheRemoveAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Exception/ExceptionLogAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Aspects/Autofac/Exception/ExceptionLogAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Logging/LogAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Aspects/Autofac/Logging/LogAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/SecuredOperation/SecuredOperationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Aspects/Autofac/SecuredOperation/SecuredOperationAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Aspects/Autofac/Transaction/TransactionScopeAspect.cs -------------------------------------------------------------------------------- /Core/Aspects/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Aspects/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Caching/ICacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Caching/ICacheService.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Caching/Microsoft/MemoryCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Caching/Microsoft/MemoryCacheService.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Logging/LogDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Logging/LogDetail.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Logging/LogDetailWithException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Logging/LogDetailWithException.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Logging/LogParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Logging/LogParameter.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Logging/Serilog/LoggerServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Logging/Serilog/LoggerServiceBase.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Logging/Serilog/Loggers/FileLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Logging/Serilog/Loggers/FileLogger.cs -------------------------------------------------------------------------------- /Core/CrossCuttingConcers/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/CrossCuttingConcers/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfBaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/DataAccess/EntityFramework/EfBaseRepository.cs -------------------------------------------------------------------------------- /Core/DataAccess/IBaseRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/DataAccess/IBaseRepository.cs -------------------------------------------------------------------------------- /Core/Entities/BaseEntities/AuditEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/BaseEntities/AuditEntity.cs -------------------------------------------------------------------------------- /Core/Entities/BaseEntities/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/BaseEntities/BaseEntity.cs -------------------------------------------------------------------------------- /Core/Entities/BaseEntities/CreatedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/BaseEntities/CreatedEntity.cs -------------------------------------------------------------------------------- /Core/Entities/BaseEntities/UpdatedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/BaseEntities/UpdatedEntity.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/Concrete/UserType.cs -------------------------------------------------------------------------------- /Core/Entities/Concrete/UserTypeOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/Concrete/UserTypeOperationClaim.cs -------------------------------------------------------------------------------- /Core/Entities/Dtos/OperationClaimDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/Dtos/OperationClaimDto.cs -------------------------------------------------------------------------------- /Core/Entities/ICreatedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/ICreatedEntity.cs -------------------------------------------------------------------------------- /Core/Entities/IDisplayEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/IDisplayEntity.cs -------------------------------------------------------------------------------- /Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/IDto.cs -------------------------------------------------------------------------------- /Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /Core/Entities/ISoftDeleteEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/ISoftDeleteEntity.cs -------------------------------------------------------------------------------- /Core/Entities/IUpdatedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Entities/IUpdatedEntity.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Extensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Extensions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /Core/Extensions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Extensions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/JwtTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Extensions/JwtTokenExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/StaticHttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Extensions/StaticHttpContextExtensions.cs -------------------------------------------------------------------------------- /Core/Extensions/SwaggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Extensions/SwaggerExtensions.cs -------------------------------------------------------------------------------- /Core/Localize/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Localize/Resource.cs -------------------------------------------------------------------------------- /Core/Providers/CookieRequestCultureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Providers/CookieRequestCultureProvider.cs -------------------------------------------------------------------------------- /Core/Providers/RequestHeaderCultureProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Providers/RequestHeaderCultureProvider.cs -------------------------------------------------------------------------------- /Core/Resources/Localize.Resource.en-US.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Resources/Localize.Resource.en-US.resx -------------------------------------------------------------------------------- /Core/Resources/Localize.Resource.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Resources/Localize.Resource.tr-TR.resx -------------------------------------------------------------------------------- /Core/Utilities/Exceptions/UnAuthorizeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Exceptions/UnAuthorizeException.cs -------------------------------------------------------------------------------- /Core/Utilities/Helpers/HttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Helpers/HttpContext.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/AspectInterseptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Interceptors/AspectInterseptorSelector.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /Core/Utilities/Localization/ILocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Localization/ILocalizationService.cs -------------------------------------------------------------------------------- /Core/Utilities/Localization/LocalizationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Localization/LocalizationService.cs -------------------------------------------------------------------------------- /Core/Utilities/Messages/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Messages/Constants.cs -------------------------------------------------------------------------------- /Core/Utilities/Messages/ResultCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Messages/ResultCodes.cs -------------------------------------------------------------------------------- /Core/Utilities/Responses/ApiDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Responses/ApiDataResponse.cs -------------------------------------------------------------------------------- /Core/Utilities/Responses/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Responses/ApiResponse.cs -------------------------------------------------------------------------------- /Core/Utilities/Responses/ErrorApiDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Responses/ErrorApiDataResponse.cs -------------------------------------------------------------------------------- /Core/Utilities/Responses/ErrorApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Responses/ErrorApiResponse.cs -------------------------------------------------------------------------------- /Core/Utilities/Responses/SuccessApiDataResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Responses/SuccessApiDataResponse.cs -------------------------------------------------------------------------------- /Core/Utilities/Responses/SuccessApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Responses/SuccessApiResponse.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hash/IHashService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/Hash/IHashService.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hash/Sha256/Sha256HashService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/Hash/Sha256/Sha256HashService.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Hash/Sha512/Sha512Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/Hash/Sha512/Sha512Helper.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/MD5/IMD5Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/MD5/IMD5Service.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/MD5/MD5Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/MD5/MD5Service.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Token/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/Token/AccessToken.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Token/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/Token/AppSettings.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Token/ITokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/Token/ITokenService.cs -------------------------------------------------------------------------------- /Core/Utilities/Security/Token/Jwt/JwtTokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Security/Token/Jwt/JwtTokenService.cs -------------------------------------------------------------------------------- /Core/Utilities/Settings/LocalizationAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Core/Utilities/Settings/LocalizationAppSettings.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IAppOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/IAppOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IAppUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/IAppUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IAppUserTypeAppOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/IAppUserTypeAppOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IAppUserTypeDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/IAppUserTypeDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/ILanguageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/ILanguageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IPageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/IPageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IPageLanguageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/IPageLanguageDal.cs -------------------------------------------------------------------------------- /DataAccess/Abstract/IPageTypeDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Abstract/IPageTypeDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/Contexts/ECommerceDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/Contexts/ECommerceDbContext.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Configurations/AppUserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/Configurations/AppUserConfiguration.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Configurations/AppUserTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/Configurations/AppUserTypeConfiguration.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Configurations/LanguageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/Configurations/LanguageConfiguration.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Configurations/PageConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/Configurations/PageConfiguration.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/Configurations/PageTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/Configurations/PageTypeConfiguration.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfAppOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfAppOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfAppUserAppOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfAppUserAppOperationClaimDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfAppUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfAppUserDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfAppUserTypeDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfAppUserTypeDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfLanguageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfLanguageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfPageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfPageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfPageLanguageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfPageLanguageDal.cs -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfPageTypeDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Concrete/EntityFramework/EfPageTypeDal.cs -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /DataAccess/Migrations/20230826203749_FirstMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Migrations/20230826203749_FirstMigration.Designer.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/20230826203749_FirstMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Migrations/20230826203749_FirstMigration.cs -------------------------------------------------------------------------------- /DataAccess/Migrations/ECommerceDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/DataAccess/Migrations/ECommerceDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /ECommerceProjectWithWebAPI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/ECommerceProjectWithWebAPI.sln -------------------------------------------------------------------------------- /Entities/Abstract/Enums/EnumAppUserTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Abstract/Enums/EnumAppUserTypes.cs -------------------------------------------------------------------------------- /Entities/Abstract/Enums/EnumGenders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Abstract/Enums/EnumGenders.cs -------------------------------------------------------------------------------- /Entities/Abstract/Enums/EnumLanguages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Abstract/Enums/EnumLanguages.cs -------------------------------------------------------------------------------- /Entities/Concrete/AppOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/AppOperationClaim.cs -------------------------------------------------------------------------------- /Entities/Concrete/AppUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/AppUser.cs -------------------------------------------------------------------------------- /Entities/Concrete/AppUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/AppUserType.cs -------------------------------------------------------------------------------- /Entities/Concrete/AppUserTypeAppOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/AppUserTypeAppOperationClaim.cs -------------------------------------------------------------------------------- /Entities/Concrete/Laguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/Laguage.cs -------------------------------------------------------------------------------- /Entities/Concrete/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/Page.cs -------------------------------------------------------------------------------- /Entities/Concrete/PageLanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/PageLanguage.cs -------------------------------------------------------------------------------- /Entities/Concrete/PagePermisson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/PagePermisson.cs -------------------------------------------------------------------------------- /Entities/Concrete/PageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Concrete/PageType.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppOperationClaims/AppOperationClaimDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppOperationClaims/AppOperationClaimDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUserTypes/AppUserTypeAddDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUserTypes/AppUserTypeAddDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUserTypes/AppUserTypeDeleteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUserTypes/AppUserTypeDeleteDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUserTypes/AppUserTypeDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUserTypes/AppUserTypeDetailDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUserTypes/AppUserTypeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUserTypes/AppUserTypeDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUserTypes/AppUserTypeUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUserTypes/AppUserTypeUpdateDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUsers/AppUserAddDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUsers/AppUserAddDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUsers/AppUserDeleteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUsers/AppUserDeleteDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUsers/AppUserDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUsers/AppUserDetailDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUsers/AppUserDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUsers/AppUserDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/AppUsers/AppUserUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/AppUsers/AppUserUpdateDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Auths/LoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Auths/LoginDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Auths/RegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Auths/RegisterDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Languages/LanguageDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Languages/LanguageDetailDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Languages/LanguageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Languages/LanguageDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PageLanguages/PageLanguageAddDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PageLanguages/PageLanguageAddDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PageLanguages/PageLanguageDeleteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PageLanguages/PageLanguageDeleteDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PageLanguages/PageLanguageDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PageLanguages/PageLanguageDetailDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PageLanguages/PageLanguageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PageLanguages/PageLanguageDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PageLanguages/PageLanguageUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PageLanguages/PageLanguageUpdateDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PagePageLanguages/PagePageLanguageAddDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PagePageLanguages/PagePageLanguageAddDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PagePageLanguages/PagePageLanguageDeleteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PagePageLanguages/PagePageLanguageDeleteDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PagePageLanguages/PagePageLanguageDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PagePageLanguages/PagePageLanguageDetailDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PagePageLanguages/PagePageLanguageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PagePageLanguages/PagePageLanguageDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PagePageLanguages/PagePageLanguageUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PagePageLanguages/PagePageLanguageUpdateDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/PageTypes/PageTypeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/PageTypes/PageTypeDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Pages/PageAddDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Pages/PageAddDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Pages/PageDeleteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Pages/PageDeleteDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Pages/PageDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Pages/PageDetailDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Pages/PageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Pages/PageDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/Pages/PageUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/Pages/PageUpdateDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/UploadImages/FileUploudAPIDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/UploadImages/FileUploudAPIDto.cs -------------------------------------------------------------------------------- /Entities/Dtos/UploadImages/UploadImageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Dtos/UploadImages/UploadImageDto.cs -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Entities.csproj -------------------------------------------------------------------------------- /Entities/Mappings/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/Entities/Mappings/MappingProfile.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/README.md -------------------------------------------------------------------------------- /WebAPI/Controllers/AppUserTypesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/AppUserTypesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/AppUsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/AppUsersController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/LanguagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/LanguagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/PageLanguagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/PageLanguagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/PageTypesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/PageTypesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/PagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/PagesController.cs -------------------------------------------------------------------------------- /WebAPI/Controllers/UploadImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Controllers/UploadImagesController.cs -------------------------------------------------------------------------------- /WebAPI/Logs/20230425.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230425.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230429.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230429.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230429_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230429_001.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230823.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230823.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230825.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230825.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230825_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230825_001.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_001.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_002.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_003.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_004.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_005.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_006.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_007.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_008.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_009.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_010.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_011.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_012.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_013.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_014.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_015.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_016.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_017.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_018.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_019.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_020.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_021.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_022.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_023.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_024.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_025.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_026.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_027.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_028.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_029.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_030.txt -------------------------------------------------------------------------------- /WebAPI/Logs/20230826_031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Logs/20230826_031.txt -------------------------------------------------------------------------------- /WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Program.cs -------------------------------------------------------------------------------- /WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/Startup.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/appsettings.json -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/0b7f6c42-594a-41f1-9b6a-1beddd975991.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/0b7f6c42-594a-41f1-9b6a-1beddd975991.jfif -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/2dbff90d-cc6a-4d25-b361-3fcc05f022d7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/2dbff90d-cc6a-4d25-b361-3fcc05f022d7.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/3a1f169b-9786-4ead-b5cd-09ee6b6ef13f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/3a1f169b-9786-4ead-b5cd-09ee6b6ef13f.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/3d3e2a4d-36ca-4b4e-9622-9109b09975d1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/3d3e2a4d-36ca-4b4e-9622-9109b09975d1.jfif -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/504c5d34-e92e-4f85-8848-0a6781296e39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/504c5d34-e92e-4f85-8848-0a6781296e39.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/5b7dd246-9338-44ff-89b5-9af2854ba403.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/5b7dd246-9338-44ff-89b5-9af2854ba403.jfif -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/5e149f9b-1939-4da8-a96f-ae41f9265908.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/5e149f9b-1939-4da8-a96f-ae41f9265908.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/6190587b-f862-4906-9737-14fcae0eafd0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/6190587b-f862-4906-9737-14fcae0eafd0.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/63871414-0595-480c-ac67-907f833a1235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/63871414-0595-480c-ac67-907f833a1235.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/6ad6a9d8-d99a-4a27-9fcd-4901be1e8f85.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/6ad6a9d8-d99a-4a27-9fcd-4901be1e8f85.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/71b82766-907c-43b8-9ccd-2b4a70fb272f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/71b82766-907c-43b8-9ccd-2b4a70fb272f.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/85a5d67c-760f-458f-890a-e095683b6f18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/85a5d67c-760f-458f-890a-e095683b6f18.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/8acbf07d-7480-48b5-b134-af6d149f8dba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/8acbf07d-7480-48b5-b134-af6d149f8dba.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/9d42b2c6-6701-49b9-a904-c3dbd61b3956.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/9d42b2c6-6701-49b9-a904-c3dbd61b3956.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/a144046a-9690-4979-b35b-a566247a2d76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/a144046a-9690-4979-b35b-a566247a2d76.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/aa854898-d7c0-4bd6-978c-b834ebb1ae3e.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/aa854898-d7c0-4bd6-978c-b834ebb1ae3e.jfif -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/afbe559c-9a05-4d30-963e-d7838a326308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/afbe559c-9a05-4d30-963e-d7838a326308.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/b1708cdd-9c39-48af-9ce4-338933277643.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/b1708cdd-9c39-48af-9ce4-338933277643.jfif -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/b1b57958-8875-4a10-b91d-e3102df03c98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/b1b57958-8875-4a10-b91d-e3102df03c98.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/b30cf137-c531-438e-9324-5a6bb37dfa1b.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/b30cf137-c531-438e-9324-5a6bb37dfa1b.jfif -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/b9d2676d-83bc-418b-a08c-1d4e2622eec1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/b9d2676d-83bc-418b-a08c-1d4e2622eec1.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/ba77400d-b582-49ff-a8a0-65310a75c008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/ba77400d-b582-49ff-a8a0-65310a75c008.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/bcf42fe7-6e0d-4364-8a03-c212021975cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/bcf42fe7-6e0d-4364-8a03-c212021975cf.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/d0610f71-46ce-4820-bff0-d348ac4dae4c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/d0610f71-46ce-4820-bff0-d348ac4dae4c.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/d2df7844-89ed-4fea-bbce-f584de87372f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/d2df7844-89ed-4fea-bbce-f584de87372f.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/da9e6d3f-20a8-4c89-90f6-b9e960b7b05b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/da9e6d3f-20a8-4c89-90f6-b9e960b7b05b.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/ebd902a6-2576-4023-9af8-9d26944271c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/ebd902a6-2576-4023-9af8-9d26944271c2.jpg -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/f0af0edf-585c-43e9-aa01-6283091afa85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/f0af0edf-585c-43e9-aa01-6283091afa85.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/f232f874-f9ca-4d9a-ac57-ade72901f974.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/f232f874-f9ca-4d9a-ac57-ade72901f974.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/f5f6fdd7-e741-4659-9758-ace026d78f14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/f5f6fdd7-e741-4659-9758-ace026d78f14.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/f86bf9f5-0806-4d32-b9fc-e14fc3cb9b3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/f86bf9f5-0806-4d32-b9fc-e14fc3cb9b3a.png -------------------------------------------------------------------------------- /WebAPI/wwwroot/Upload/user3-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPI/wwwroot/Upload/user3-160x160.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/AppUserApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/AppUserApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/AppUserTypeApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/AppUserTypeApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/AuthApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/AuthApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/HttpClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/HttpClientService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IAppUserApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IAppUserApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IAppUserTypeApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IAppUserTypeApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IAuthApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IAuthApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IHttpClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IHttpClientService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/ILanguageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/ILanguageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IPageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IPageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IPageLanguageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IPageLanguageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IPageTypeApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IPageTypeApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/Interfaces/IUploadImageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/Interfaces/IUploadImageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/LanguageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/LanguageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/PageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/PageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/PageLanguageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/PageLanguageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/PageTypeApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/PageTypeApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ApiServices/UploadImageApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ApiServices/UploadImageApiService.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Controllers/AppUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Controllers/AppUserController.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Controllers/AppUserTypeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Controllers/AppUserTypeController.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Controllers/AuthController.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Controllers/ErrorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Controllers/ErrorController.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Controllers/PageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Controllers/PageController.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/ViewComponents/LeftMenuViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/ViewComponents/LeftMenuViewComponent.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Add.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Delete.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Detail.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/List.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUser/Update.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Add.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Delete.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Detail.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/List.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/AppUserType/Update.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Auth/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Auth/Login.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Error/BadRequest400.cshtml: -------------------------------------------------------------------------------- 1 |

BadRequest400 Page

-------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Error/Error404.cshtml: -------------------------------------------------------------------------------- 1 |

Error404 Page

-------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Error/InternalServerError500.cshtml: -------------------------------------------------------------------------------- 1 |

InternalServerError500 Page

-------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Error/MyStatusCode.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Error/MyStatusCode.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Error/Unauthorize401.cshtml: -------------------------------------------------------------------------------- 1 |

Unauthorize401 Page

-------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Home/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Home/List.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Page/Add.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Page/Add.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Page/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Page/Delete.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Page/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Page/Detail.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Page/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Page/List.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Page/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Page/Update.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Shared/Components/LeftMenu/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Shared/Components/LeftMenu/Default.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/Shared/_LayoutAdmin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/Shared/_LayoutAdmin.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Areas/Admin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Handler/AuthTokenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Handler/AuthTokenHandler.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Helpers/HelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Helpers/HelperMethods.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Mappings/MappingMvcProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Mappings/MappingMvcProfile.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserAddViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserDeleteViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserDetailViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserListViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserTypeAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserTypeAddViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserTypeDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserTypeDeleteViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserTypeDetailViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserTypeDetailViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserTypeListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserTypeListViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserTypeUpdateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserTypeUpdateViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/AppUserUpdateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/AppUserUpdateViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/LeftMenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/LeftMenuViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/PageAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/PageAddViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Models/PageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Models/PageViewModel.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Program.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Properties/launchSettings.json -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/ScaffoldingReadMe.txt -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Startup.cs -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/WebAPIWithCoreMvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/WebAPIWithCoreMvc.csproj -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/appsettings.Development.json -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/appsettings.json -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/Upload/0420a4d5-578d-40b5-b73d-f718bd60f8bd_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/Upload/0420a4d5-578d-40b5-b73d-f718bd60f8bd_red.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/Upload/178c2b9d-3d47-4b62-870b-efd5cf957c4d_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/Upload/178c2b9d-3d47-4b62-870b-efd5cf957c4d_red.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/Upload/49f50391-f084-4a95-9c5b-61fea17e4a26_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/Upload/49f50391-f084-4a95-9c5b-61fea17e4a26_002.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/Upload/b9a54be3-1c26-48d3-8a62-7f19260a82ff_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/Upload/b9a54be3-1c26-48d3-8a62-7f19260a82ff_red.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/Upload/user3-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/Upload/user3-160x160.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/css/site.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/favicon.ico -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/js/site.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.css.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/adminlte.min.css.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/alt/adminlte.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/css/alt/adminlte.core.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/AdminLTELogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/AdminLTELogo.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar2.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar3.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar4.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/avatar5.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/credit/visa.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/default-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/default-150x150.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/icons.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo1.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo2.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo3.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/photo4.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-1.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-2.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-3.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-4.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/prod-5.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user-160x160.png -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/.eslintrc.json -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/adminlte.min.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/demo.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/pages/dashboard3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/dist/js/pages/dashboard3.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/chart.js/Chart.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/codemirror/mode/d/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/codemirror/mode/d/d.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/codemirror/mode/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/codemirror/mode/q/q.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/codemirror/mode/r/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/codemirror/mode/r/r.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/basic.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/dropzone.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/dropzone.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/min/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/dropzone/min/basic.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/fastclick/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/fastclick/fastclick.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/fullcalendar/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/fullcalendar/main.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/fullcalendar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/fullcalendar/main.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/inputmask/inputmask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/inputmask/inputmask.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery-ui/LICENSE.txt -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.min.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jquery/jquery.slim.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jqvmap/jquery.vmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jqvmap/jquery.vmap.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jqvmap/jqvmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jqvmap/jqvmap.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jqvmap/jqvmap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jqvmap/jqvmap.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/demos/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/demos/db.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jsgrid/jsgrid.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jszip/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jszip/jszip.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jszip/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/jszip/jszip.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/af.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ar.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/az.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/be.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bg.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bm.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bn-bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bn-bd.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bo.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/br.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/bs.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ca.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/cs.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/cv.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/cy.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/da.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/de-at.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/de-ch.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/de.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/dv.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/el.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-SG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-SG.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-au.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-ca.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-gb.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-ie.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-il.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-in.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/en-nz.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/eo.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es-do.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es-mx.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es-us.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/es.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/et.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/eu.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fa.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fi.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fil.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fo.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fr.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/fy.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ga.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/gd.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/gl.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/gu.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/he.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hi.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hr.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hu.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/hy-am.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/id.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/is.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/it-ch.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/it.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ja.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/jv.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ka.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/kk.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/km.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/kn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ko.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ku.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ky.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lb.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lo.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lt.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/lv.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/me.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mi.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mk.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ml.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mr.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ms-my.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ms.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/mt.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/my.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nb.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ne.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nl-be.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nl.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/nn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pa-in.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pl.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pt-br.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/pt.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ro.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ru.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sd.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/se.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/si.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sk.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sl.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sq.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sr.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ss.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sv.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/sw.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ta.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/te.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tet.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tg.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/th.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tk.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tlh.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tr.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tzl.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/tzm.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ug-cn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/uk.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/ur.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/uz.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/vi.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/yo.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-hk.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-mo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-mo.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locales.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locales.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/locales.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/moment/moment.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pace-progress/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pace-progress/pace.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/pdfmake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/pdfmake.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/pdfmake.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/pdfmake.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/pdfmake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/pdfmake.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/pdfmake/vfs_fonts.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/esm/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/esm/popper.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper-utils.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/popper.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/umd/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/popper/umd/popper.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/Gruntfile.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/license.txt -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/raphael.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/raphael/raphael.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/af.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/az.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/da.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/de.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/el.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/en.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/es.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/et.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-ar-AR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-az-AZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-bg-BG.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-ca-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-cs-CZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-da-DK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-de-DE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-el-GR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-es-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-es-EU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-fa-IR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-fi-FI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-fr-FR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-gl-ES.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-he-IL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-hr-HR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-hu-HU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-id-ID.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-it-IT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-ja-JP.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-ko-KR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-lt-LT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-lt-LV.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-mn-MN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-nb-NO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-nl-NL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-pl-PL.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-pt-BR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-pt-PT.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-ro-RO.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-ru-RU.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-sk-SK.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-sl-SI.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-sr-RS-Latin.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-sr-RS.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-sv-SE.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-ta-IN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-th-TH.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-tr-TR.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-uk-UA.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-uz-UZ.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-vi-VN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-zh-CN.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/lang/summernote-zh-TW.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/summernote-bs4.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/summernote-lite.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/summernote/summernote.min.js.LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Summernote v0.8.18 | (c) 2013- Alan Hong and other contributors | MIT license */ 2 | -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/toastr/toastr.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/toastr/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/toastr/toastr.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/toastr/toastr.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.cjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.cjs.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.esm.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.iife.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/AdminLTE-3.2.0-rc/plugins/uplot/uPlot.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /WebAPIWithCoreMvc/wwwroot/user3-160x160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithCoreMvc/wwwroot/user3-160x160.png -------------------------------------------------------------------------------- /WebAPIWithWindowsForm/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithWindowsForm/Form1.Designer.cs -------------------------------------------------------------------------------- /WebAPIWithWindowsForm/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithWindowsForm/Form1.cs -------------------------------------------------------------------------------- /WebAPIWithWindowsForm/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithWindowsForm/Form1.resx -------------------------------------------------------------------------------- /WebAPIWithWindowsForm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithWindowsForm/Program.cs -------------------------------------------------------------------------------- /WebAPIWithWindowsForm/WebAPIWithWindowsForm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyasindogan/ECommerceProjectWithWebAPI/HEAD/WebAPIWithWindowsForm/WebAPIWithWindowsForm.csproj --------------------------------------------------------------------------------