├── .gitattributes ├── .gitignore ├── NLayer.API ├── Controllers │ ├── CategoriesController.cs │ ├── CustomBaseController.cs │ ├── ProductsController.cs │ └── WeatherForecastController.cs ├── Filters │ ├── NotFoundFilter.cs │ └── ValidateFilterAttribute.cs ├── Middlewares │ └── UseCustomExceptionHandler.cs ├── Modules │ └── RepoServiceModule.cs ├── NLayer.API.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── WeatherForecast.cs ├── appsettings.Development.json └── appsettings.json ├── NLayer.Caching ├── NLayer.Caching.csproj └── ProductServiceWithCaching.cs ├── NLayer.Core ├── DTOs │ ├── BaseDto.cs │ ├── CategoryDto.cs │ ├── CategoryWithProductsDto.cs │ ├── CustomResponseDto.cs │ ├── ErrorViewModel.cs │ ├── NoContentDto.cs │ ├── ProductDto.cs │ ├── ProductFeatureDto.cs │ ├── ProductUpdateDto.cs │ └── ProductWithCategoryDto.cs ├── Models │ ├── BaseEntity.cs │ ├── Category.cs │ ├── Product.cs │ └── ProductFeature.cs ├── NLayer.Core.csproj ├── Repositories │ ├── ICategoryRepository.cs │ ├── IGenericRepository.cs │ └── IProductRepository.cs ├── Services │ ├── ICategoryService.cs │ ├── IProductService.cs │ └── IService.cs └── UnitOfWorks │ └── IUnitOfWork.cs ├── NLayer.Repository ├── AppDbContext.cs ├── Configurations │ ├── CategoryConfiguration.cs │ ├── ProductConfiguration.cs │ └── ProductFeatureConfiguration.cs ├── Migrations │ ├── 20220110212655_initial.Designer.cs │ ├── 20220110212655_initial.cs │ └── AppDbContextModelSnapshot.cs ├── NLayer.Repository.csproj ├── Repositories │ ├── CategoryRepository.cs │ ├── GenericRepository.cs │ └── ProductRepository.cs ├── Seeds │ ├── CategorySeed.cs │ └── ProductSeed.cs └── UnitOfWorks │ └── UnitOfWork.cs ├── NLayer.Service ├── Exceptions │ ├── ClientSideException.cs │ └── NotFoundExcepiton.cs ├── Mapping │ └── MapProfile.cs ├── NLayer.Service.csproj ├── Services │ ├── CategoryService.cs │ ├── ProductService.cs │ └── Service.cs └── Validations │ └── ProductDtoValidator.cs ├── NLayer.Web ├── Controllers │ ├── HomeController.cs │ └── ProductsController.cs ├── Modules │ └── RepoServiceModule.cs ├── NLayer.Web.csproj ├── NotFoundFilter.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── CategoryApiService.cs │ └── ProductApiService.cs ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Products │ │ ├── Index.cshtml │ │ ├── Save.cshtml │ │ └── Update.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.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 ├── NLayerUdemyApp.sln └── Ports.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/.gitignore -------------------------------------------------------------------------------- /NLayer.API/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /NLayer.API/Controllers/CustomBaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Controllers/CustomBaseController.cs -------------------------------------------------------------------------------- /NLayer.API/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /NLayer.API/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /NLayer.API/Filters/NotFoundFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Filters/NotFoundFilter.cs -------------------------------------------------------------------------------- /NLayer.API/Filters/ValidateFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Filters/ValidateFilterAttribute.cs -------------------------------------------------------------------------------- /NLayer.API/Middlewares/UseCustomExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Middlewares/UseCustomExceptionHandler.cs -------------------------------------------------------------------------------- /NLayer.API/Modules/RepoServiceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Modules/RepoServiceModule.cs -------------------------------------------------------------------------------- /NLayer.API/NLayer.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/NLayer.API.csproj -------------------------------------------------------------------------------- /NLayer.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Program.cs -------------------------------------------------------------------------------- /NLayer.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /NLayer.API/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/WeatherForecast.cs -------------------------------------------------------------------------------- /NLayer.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/appsettings.Development.json -------------------------------------------------------------------------------- /NLayer.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.API/appsettings.json -------------------------------------------------------------------------------- /NLayer.Caching/NLayer.Caching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Caching/NLayer.Caching.csproj -------------------------------------------------------------------------------- /NLayer.Caching/ProductServiceWithCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Caching/ProductServiceWithCaching.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/BaseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/BaseDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/CategoryDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/CategoryWithProductsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/CategoryWithProductsDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/CustomResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/CustomResponseDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/ErrorViewModel.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/NoContentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/NoContentDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/ProductDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/ProductDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/ProductFeatureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/ProductFeatureDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/ProductUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/ProductUpdateDto.cs -------------------------------------------------------------------------------- /NLayer.Core/DTOs/ProductWithCategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/DTOs/ProductWithCategoryDto.cs -------------------------------------------------------------------------------- /NLayer.Core/Models/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Models/BaseEntity.cs -------------------------------------------------------------------------------- /NLayer.Core/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Models/Category.cs -------------------------------------------------------------------------------- /NLayer.Core/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Models/Product.cs -------------------------------------------------------------------------------- /NLayer.Core/Models/ProductFeature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Models/ProductFeature.cs -------------------------------------------------------------------------------- /NLayer.Core/NLayer.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/NLayer.Core.csproj -------------------------------------------------------------------------------- /NLayer.Core/Repositories/ICategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Repositories/ICategoryRepository.cs -------------------------------------------------------------------------------- /NLayer.Core/Repositories/IGenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Repositories/IGenericRepository.cs -------------------------------------------------------------------------------- /NLayer.Core/Repositories/IProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Repositories/IProductRepository.cs -------------------------------------------------------------------------------- /NLayer.Core/Services/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Services/ICategoryService.cs -------------------------------------------------------------------------------- /NLayer.Core/Services/IProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Services/IProductService.cs -------------------------------------------------------------------------------- /NLayer.Core/Services/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/Services/IService.cs -------------------------------------------------------------------------------- /NLayer.Core/UnitOfWorks/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Core/UnitOfWorks/IUnitOfWork.cs -------------------------------------------------------------------------------- /NLayer.Repository/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/AppDbContext.cs -------------------------------------------------------------------------------- /NLayer.Repository/Configurations/CategoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Configurations/CategoryConfiguration.cs -------------------------------------------------------------------------------- /NLayer.Repository/Configurations/ProductConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Configurations/ProductConfiguration.cs -------------------------------------------------------------------------------- /NLayer.Repository/Configurations/ProductFeatureConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Configurations/ProductFeatureConfiguration.cs -------------------------------------------------------------------------------- /NLayer.Repository/Migrations/20220110212655_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Migrations/20220110212655_initial.Designer.cs -------------------------------------------------------------------------------- /NLayer.Repository/Migrations/20220110212655_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Migrations/20220110212655_initial.cs -------------------------------------------------------------------------------- /NLayer.Repository/Migrations/AppDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Migrations/AppDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /NLayer.Repository/NLayer.Repository.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/NLayer.Repository.csproj -------------------------------------------------------------------------------- /NLayer.Repository/Repositories/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Repositories/CategoryRepository.cs -------------------------------------------------------------------------------- /NLayer.Repository/Repositories/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Repositories/GenericRepository.cs -------------------------------------------------------------------------------- /NLayer.Repository/Repositories/ProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Repositories/ProductRepository.cs -------------------------------------------------------------------------------- /NLayer.Repository/Seeds/CategorySeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Seeds/CategorySeed.cs -------------------------------------------------------------------------------- /NLayer.Repository/Seeds/ProductSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/Seeds/ProductSeed.cs -------------------------------------------------------------------------------- /NLayer.Repository/UnitOfWorks/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Repository/UnitOfWorks/UnitOfWork.cs -------------------------------------------------------------------------------- /NLayer.Service/Exceptions/ClientSideException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/Exceptions/ClientSideException.cs -------------------------------------------------------------------------------- /NLayer.Service/Exceptions/NotFoundExcepiton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/Exceptions/NotFoundExcepiton.cs -------------------------------------------------------------------------------- /NLayer.Service/Mapping/MapProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/Mapping/MapProfile.cs -------------------------------------------------------------------------------- /NLayer.Service/NLayer.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/NLayer.Service.csproj -------------------------------------------------------------------------------- /NLayer.Service/Services/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/Services/CategoryService.cs -------------------------------------------------------------------------------- /NLayer.Service/Services/ProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/Services/ProductService.cs -------------------------------------------------------------------------------- /NLayer.Service/Services/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/Services/Service.cs -------------------------------------------------------------------------------- /NLayer.Service/Validations/ProductDtoValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Service/Validations/ProductDtoValidator.cs -------------------------------------------------------------------------------- /NLayer.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /NLayer.Web/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /NLayer.Web/Modules/RepoServiceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Modules/RepoServiceModule.cs -------------------------------------------------------------------------------- /NLayer.Web/NLayer.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/NLayer.Web.csproj -------------------------------------------------------------------------------- /NLayer.Web/NotFoundFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/NotFoundFilter.cs -------------------------------------------------------------------------------- /NLayer.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Program.cs -------------------------------------------------------------------------------- /NLayer.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /NLayer.Web/Services/CategoryApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Services/CategoryApiService.cs -------------------------------------------------------------------------------- /NLayer.Web/Services/ProductApiService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Services/ProductApiService.cs -------------------------------------------------------------------------------- /NLayer.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/Products/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Products/Index.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/Products/Save.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Products/Save.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/Products/Update.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Products/Update.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /NLayer.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /NLayer.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /NLayer.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/appsettings.Development.json -------------------------------------------------------------------------------- /NLayer.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/appsettings.json -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /NLayer.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayer.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /NLayerUdemyApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/NLayerUdemyApp.sln -------------------------------------------------------------------------------- /Ports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fcakiroglu16/UdemyNLayerApp/HEAD/Ports.txt --------------------------------------------------------------------------------