├── .github └── .keep ├── .gitignore ├── README.md ├── project-client ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.jsx │ ├── assets │ │ ├── default.png │ │ ├── home-background.png │ │ └── profileDefaultImage.jpg │ ├── components │ │ ├── dashboard │ │ │ ├── ControlBrands.jsx │ │ │ ├── ControlCategories.jsx │ │ │ ├── ControlColors.jsx │ │ │ ├── ControlCreditCards.jsx │ │ │ ├── ControlOffers.jsx │ │ │ ├── ControlProducts.jsx │ │ │ ├── ControlUsers.jsx │ │ │ └── ControlUsingStates.jsx │ │ ├── footer │ │ │ └── Footer.jsx │ │ ├── home │ │ │ ├── brand │ │ │ │ └── Brands.jsx │ │ │ ├── category │ │ │ │ └── Categories.jsx │ │ │ ├── color │ │ │ │ └── Colors.jsx │ │ │ └── usingState │ │ │ │ └── UsingStates.jsx │ │ ├── navbar │ │ │ └── Navbar.jsx │ │ └── profile │ │ │ ├── ChangePassword.jsx │ │ │ ├── CreditCard.jsx │ │ │ ├── GivenOffers.jsx │ │ │ ├── ProfileMain.jsx │ │ │ ├── PurchasedProducts.jsx │ │ │ ├── SoldedProducts.jsx │ │ │ ├── TakenOffers.jsx │ │ │ └── UpdateUser.jsx │ ├── context │ │ ├── AuthContext.jsx │ │ ├── BrandContext.jsx │ │ ├── CategoryContext.jsx │ │ ├── ColorContext.jsx │ │ ├── CreditCardContext.jsx │ │ ├── FileContext.jsx │ │ ├── FilterContext.jsx │ │ ├── NaviContext.jsx │ │ ├── OfferContext.jsx │ │ ├── PaymentContext.jsx │ │ ├── ProductContext.jsx │ │ ├── SubmitContext.jsx │ │ ├── ThemeContext.jsx │ │ ├── UserContext.jsx │ │ └── UsingStateContext.jsx │ ├── index.js │ ├── pages │ │ ├── dashboard │ │ │ └── Dashboard.jsx │ │ ├── home │ │ │ └── Home.jsx │ │ ├── login │ │ │ └── Login.jsx │ │ ├── main │ │ │ └── Main.jsx │ │ ├── page404 │ │ │ └── Page404.jsx │ │ ├── product │ │ │ ├── AddProduct.jsx │ │ │ ├── OfferForProduct.jsx │ │ │ ├── Payment.jsx │ │ │ ├── ProductDetails.jsx │ │ │ ├── Products.jsx │ │ │ └── UpdateProduct.jsx │ │ ├── profile │ │ │ └── Profile.jsx │ │ └── register │ │ │ └── Register.jsx │ ├── services │ │ ├── authService.js │ │ ├── brandService.js │ │ ├── categoryService.js │ │ ├── colorService.js │ │ ├── creditCardService.js │ │ ├── localStorageService.js │ │ ├── offerService.js │ │ ├── productImageService.js │ │ ├── productService.js │ │ ├── request.js │ │ ├── userService.js │ │ └── usingStateService.js │ ├── tailwind.css │ └── validations │ │ ├── changePasswordSchema.js │ │ ├── controlSchema.js │ │ ├── loginSchema.js │ │ ├── offerSchema.js │ │ ├── paymentSchema.js │ │ ├── productSchema.js │ │ ├── registerSchema.js │ │ ├── updateProductSchema.js │ │ ├── updateUserSchema.js │ │ └── validation.js └── tailwind.config.js ├── project-server ├── Business │ ├── Abstract │ │ ├── IAuthService.cs │ │ ├── IBrandService.cs │ │ ├── ICategoryService.cs │ │ ├── IColorService.cs │ │ ├── ICreditCardService.cs │ │ ├── IOfferService.cs │ │ ├── IProductImageService.cs │ │ ├── IProductService.cs │ │ ├── IUserOperationClaimService.cs │ │ ├── IUserService.cs │ │ └── IUsingStateService.cs │ ├── Business.csproj │ ├── BusinessAspects │ │ └── Autofac │ │ │ └── SecuredOperation.cs │ ├── Concrete │ │ ├── AuthManager.cs │ │ ├── BrandManager.cs │ │ ├── CategoryManager.cs │ │ ├── ColorManager.cs │ │ ├── CreditCardManager.cs │ │ ├── OfferManager.cs │ │ ├── ProductImageManager.cs │ │ ├── ProductManager.cs │ │ ├── UserManager.cs │ │ ├── UserOperationClaimManager.cs │ │ └── UsingStateManager.cs │ ├── Constants │ │ ├── FilePath.cs │ │ └── Messages.cs │ ├── DependencyResolvers │ │ └── Autofac │ │ │ └── AutofacBusinessModule.cs │ ├── ValidationRules │ │ └── FluentValidation │ │ │ ├── BrandValidator.cs │ │ │ ├── CategoryValidator.cs │ │ │ ├── ColorValidator.cs │ │ │ ├── ProductValidator.cs │ │ │ └── UsingStateValidator.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Business.deps.json │ │ │ ├── Business.dll │ │ │ ├── Business.pdb │ │ │ ├── Core.dll │ │ │ ├── Core.pdb │ │ │ ├── DataAccess.dll │ │ │ ├── DataAccess.pdb │ │ │ ├── Entities.dll │ │ │ └── Entities.pdb │ └── obj │ │ ├── Business.csproj.nuget.dgspec.json │ │ ├── Business.csproj.nuget.g.props │ │ ├── Business.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Business.AssemblyInfo.cs │ │ │ ├── Business.AssemblyInfoInputs.cache │ │ │ ├── Business.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Business.GlobalUsings.g.cs │ │ │ ├── Business.assets.cache │ │ │ ├── Business.csproj.AssemblyReference.cache │ │ │ ├── Business.csproj.CopyComplete │ │ │ ├── Business.csproj.CoreCompileInputs.cache │ │ │ ├── Business.csproj.FileListAbsolute.txt │ │ │ ├── Business.dll │ │ │ ├── Business.pdb │ │ │ ├── ref │ │ │ └── Business.dll │ │ │ └── refint │ │ │ └── Business.dll │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Business.AssemblyInfo.cs │ │ │ ├── Business.AssemblyInfoInputs.cache │ │ │ ├── Business.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Business.GlobalUsings.g.cs │ │ │ ├── Business.assets.cache │ │ │ └── Business.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── ConsoleUI │ ├── ConsoleUI.csproj │ ├── Program.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── ConsoleUI.deps.json │ │ │ ├── ConsoleUI.dll │ │ │ ├── ConsoleUI.exe │ │ │ ├── ConsoleUI.pdb │ │ │ └── ConsoleUI.runtimeconfig.json │ └── obj │ │ ├── ConsoleUI.csproj.nuget.dgspec.json │ │ ├── ConsoleUI.csproj.nuget.g.props │ │ ├── ConsoleUI.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── ConsoleUI.AssemblyInfo.cs │ │ │ ├── ConsoleUI.AssemblyInfoInputs.cache │ │ │ ├── ConsoleUI.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── ConsoleUI.GlobalUsings.g.cs │ │ │ ├── ConsoleUI.assets.cache │ │ │ ├── ConsoleUI.csproj.AssemblyReference.cache │ │ │ ├── ConsoleUI.csproj.BuildWithSkipAnalyzers │ │ │ ├── ConsoleUI.csproj.CoreCompileInputs.cache │ │ │ ├── ConsoleUI.csproj.FileListAbsolute.txt │ │ │ ├── ConsoleUI.dll │ │ │ ├── ConsoleUI.genruntimeconfig.cache │ │ │ ├── ConsoleUI.pdb │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── ConsoleUI.dll │ │ │ └── refint │ │ │ └── ConsoleUI.dll │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── ConsoleUI.AssemblyInfo.cs │ │ │ ├── ConsoleUI.AssemblyInfoInputs.cache │ │ │ ├── ConsoleUI.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── ConsoleUI.GlobalUsings.g.cs │ │ │ ├── ConsoleUI.assets.cache │ │ │ └── ConsoleUI.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── Core │ ├── Aspects │ │ └── Autofac │ │ │ └── Validation │ │ │ └── ValidationAspect.cs │ ├── Core.csproj │ ├── CrossCuttingConcerns │ │ └── Validation │ │ │ └── ValidationTool.cs │ ├── DependencyResolvers │ │ └── CoreModule.cs │ ├── Entities │ │ ├── Concrete │ │ │ ├── OperationClaim.cs │ │ │ ├── User.cs │ │ │ └── UserOperationClaim.cs │ │ ├── Dtos │ │ │ ├── ChangePasswordDto.cs │ │ │ └── UserDetailDto.cs │ │ ├── IDto.cs │ │ └── IEntity.cs │ ├── Extensions │ │ ├── ClaimExtensions.cs │ │ ├── ClaimsPrincipalExtensions.cs │ │ ├── ErrorDetails.cs │ │ ├── ExceptionMiddleware.cs │ │ ├── ExceptionMiddlewareExtensions.cs │ │ └── ServiceCollectionExtensions.cs │ ├── Utilities │ │ ├── Business │ │ │ └── BusinessRules.cs │ │ ├── Configurations │ │ │ └── Configuration.cs │ │ ├── Helpers │ │ │ ├── FileHelper │ │ │ │ ├── FileHelper.cs │ │ │ │ └── IFileHelper.cs │ │ │ └── GuidHelper │ │ │ │ └── GuiddHelper.cs │ │ ├── Interceptors │ │ │ ├── AspectInterceptorSelector.cs │ │ │ ├── MethodInterception.cs │ │ │ └── MethodInterceptionBaseAttribute.cs │ │ ├── IoC │ │ │ ├── ICoreModule.cs │ │ │ └── ServiceTool.cs │ │ ├── Results │ │ │ ├── DataResult.cs │ │ │ ├── ErrorDataResult.cs │ │ │ ├── ErrorResult.cs │ │ │ ├── IDataResult.cs │ │ │ ├── IResult.cs │ │ │ ├── Result.cs │ │ │ ├── SuccessDataResult.cs │ │ │ └── SuccessResult.cs │ │ └── Security │ │ │ ├── Encryption │ │ │ ├── SecurityKeyHelper.cs │ │ │ └── SigningCredentialsHelper.cs │ │ │ ├── Hashing │ │ │ └── HashingHelper.cs │ │ │ └── JWT │ │ │ ├── AccessToken.cs │ │ │ ├── ITokenHelper.cs │ │ │ ├── JwtHelper.cs │ │ │ └── TokenOptions.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Core.deps.json │ │ │ ├── Core.dll │ │ │ ├── Core.pdb │ │ │ └── Core.runtimeconfig.json │ └── obj │ │ ├── Core.csproj.nuget.dgspec.json │ │ ├── Core.csproj.nuget.g.props │ │ ├── Core.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Core.AssemblyInfo.cs │ │ │ ├── Core.AssemblyInfoInputs.cache │ │ │ ├── Core.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Core.GlobalUsings.g.cs │ │ │ ├── Core.assets.cache │ │ │ ├── Core.csproj.AssemblyReference.cache │ │ │ ├── Core.csproj.CoreCompileInputs.cache │ │ │ ├── Core.csproj.FileListAbsolute.txt │ │ │ ├── Core.dll │ │ │ ├── Core.genruntimeconfig.cache │ │ │ ├── Core.pdb │ │ │ ├── ref │ │ │ └── Core.dll │ │ │ └── refint │ │ │ └── Core.dll │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Core.AssemblyInfo.cs │ │ │ ├── Core.AssemblyInfoInputs.cache │ │ │ ├── Core.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Core.GlobalUsings.g.cs │ │ │ ├── Core.assets.cache │ │ │ └── Core.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── DataAccess │ ├── Abstract │ │ ├── IBrandDal.cs │ │ ├── ICategoryDal.cs │ │ ├── IColorDal.cs │ │ ├── ICreditCardDal.cs │ │ ├── IOfferDal.cs │ │ ├── IProductDal.cs │ │ ├── IProductImageDal.cs │ │ ├── IUserDal.cs │ │ ├── IUserOperationClaimDal.cs │ │ └── IUsingStateDal.cs │ ├── Concrete │ │ └── EntityFramework │ │ │ ├── Context │ │ │ └── PrimeforContext.cs │ │ │ ├── EfBrandDal.cs │ │ │ ├── EfCategoryDal.cs │ │ │ ├── EfColorDal.cs │ │ │ ├── EfCreditCard.cs │ │ │ ├── EfOfferDal.cs │ │ │ ├── EfProductDal.cs │ │ │ ├── EfProductImageDal.cs │ │ │ ├── EfUserDal.cs │ │ │ ├── EfUserOperationClaimDal.cs │ │ │ └── EfUsingStateDal.cs │ ├── DataAccess.csproj │ ├── Migrations │ │ ├── 20220805053118_mig1.Designer.cs │ │ ├── 20220805053118_mig1.cs │ │ ├── 20220808134929_mig2.Designer.cs │ │ ├── 20220808134929_mig2.cs │ │ ├── 20220808144649_mig3.Designer.cs │ │ ├── 20220808144649_mig3.cs │ │ ├── 20220809061103_mig4.Designer.cs │ │ ├── 20220809061103_mig4.cs │ │ ├── 20220818074014_mig5.Designer.cs │ │ ├── 20220818074014_mig5.cs │ │ ├── 20220829203044_mig6.Designer.cs │ │ ├── 20220829203044_mig6.cs │ │ ├── 20220829203452_mig7.Designer.cs │ │ ├── 20220829203452_mig7.cs │ │ ├── 20220830052155_mig8.Designer.cs │ │ ├── 20220830052155_mig8.cs │ │ └── PrimeforContextModelSnapshot.cs │ ├── Repository │ │ ├── EntityFramework │ │ │ └── EfEntityRepositoryBase.cs │ │ ├── IEntityRepository.cs │ │ └── UnitOfWork │ │ │ └── IUnitOfWork.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Core.dll │ │ │ ├── Core.pdb │ │ │ ├── DataAccess.deps.json │ │ │ ├── DataAccess.dll │ │ │ ├── DataAccess.pdb │ │ │ ├── Entities.dll │ │ │ └── Entities.pdb │ └── obj │ │ ├── DataAccess.csproj.nuget.dgspec.json │ │ ├── DataAccess.csproj.nuget.g.props │ │ ├── DataAccess.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── DataAccess.AssemblyInfo.cs │ │ │ ├── DataAccess.AssemblyInfoInputs.cache │ │ │ ├── DataAccess.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── DataAccess.GlobalUsings.g.cs │ │ │ ├── DataAccess.assets.cache │ │ │ ├── DataAccess.csproj.AssemblyReference.cache │ │ │ ├── DataAccess.csproj.CopyComplete │ │ │ ├── DataAccess.csproj.CoreCompileInputs.cache │ │ │ ├── DataAccess.csproj.FileListAbsolute.txt │ │ │ ├── DataAccess.dll │ │ │ ├── DataAccess.pdb │ │ │ ├── ref │ │ │ └── DataAccess.dll │ │ │ └── refint │ │ │ └── DataAccess.dll │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── DataAccess.AssemblyInfo.cs │ │ │ ├── DataAccess.AssemblyInfoInputs.cache │ │ │ ├── DataAccess.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── DataAccess.GlobalUsings.g.cs │ │ │ ├── DataAccess.assets.cache │ │ │ └── DataAccess.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── Entities │ ├── Concrete │ │ ├── Brand.cs │ │ ├── Category.cs │ │ ├── Color.cs │ │ ├── CreditCard.cs │ │ ├── Offer.cs │ │ ├── Product.cs │ │ ├── ProductImage.cs │ │ └── UsingState.cs │ ├── Dtos │ │ ├── BrandForUpdateDto.cs │ │ ├── CategoryForUpdateDto.cs │ │ ├── ChangePasswordDto.cs │ │ ├── ColorForUpdateDto.cs │ │ ├── CreditCardDetailDto.cs │ │ ├── CreditCardForUpdateDto.cs │ │ ├── OfferDetailDto.cs │ │ ├── OfferForUpdateDto.cs │ │ ├── ProductDetailDto.cs │ │ ├── ProductForAddDto.cs │ │ ├── ProductForUpdateDto.cs │ │ ├── UserForLoginDto.cs │ │ ├── UserForRegisterDto.cs │ │ ├── UserForUpdateDto.cs │ │ └── UsingStateForUpdateDto.cs │ ├── Entities.csproj │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Core.dll │ │ │ ├── Core.pdb │ │ │ ├── Entities.deps.json │ │ │ ├── Entities.dll │ │ │ └── Entities.pdb │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Entities.AssemblyInfo.cs │ │ │ ├── Entities.AssemblyInfoInputs.cache │ │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Entities.GlobalUsings.g.cs │ │ │ ├── Entities.assets.cache │ │ │ ├── Entities.csproj.AssemblyReference.cache │ │ │ ├── Entities.csproj.CopyComplete │ │ │ ├── Entities.csproj.CoreCompileInputs.cache │ │ │ ├── Entities.csproj.FileListAbsolute.txt │ │ │ ├── Entities.dll │ │ │ ├── Entities.pdb │ │ │ ├── ref │ │ │ └── Entities.dll │ │ │ └── refint │ │ │ └── Entities.dll │ │ ├── Entities.csproj.nuget.dgspec.json │ │ ├── Entities.csproj.nuget.g.props │ │ ├── Entities.csproj.nuget.g.targets │ │ ├── Release │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Entities.AssemblyInfo.cs │ │ │ ├── Entities.AssemblyInfoInputs.cache │ │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Entities.GlobalUsings.g.cs │ │ │ ├── Entities.assets.cache │ │ │ └── Entities.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache ├── WebAPI │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── BrandsController.cs │ │ ├── CategoriesController.cs │ │ ├── ColorsController.cs │ │ ├── CreditCardsController.cs │ │ ├── OffersController.cs │ │ ├── ProductImagesController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── UsingStatesController.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── WebAPI.csproj │ ├── WebAPI.csproj.user │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Autofac.Extensions.DependencyInjection.dll │ │ │ ├── Autofac.Extras.DynamicProxy.dll │ │ │ ├── Autofac.dll │ │ │ ├── Business.dll │ │ │ ├── Business.pdb │ │ │ ├── Castle.Core.dll │ │ │ ├── Core.dll │ │ │ ├── Core.pdb │ │ │ ├── DataAccess.dll │ │ │ ├── DataAccess.pdb │ │ │ ├── Entities.dll │ │ │ ├── Entities.pdb │ │ │ ├── FluentValidation.dll │ │ │ ├── Humanizer.dll │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.Windows.Extensions.dll │ │ │ ├── WebAPI.deps.json │ │ │ ├── WebAPI.dll │ │ │ ├── WebAPI.exe │ │ │ ├── WebAPI.pdb │ │ │ ├── WebAPI.runtimeconfig.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── runtimes │ │ │ ├── unix │ │ │ └── lib │ │ │ │ ├── netcoreapp3.0 │ │ │ │ └── System.Drawing.Common.dll │ │ │ │ └── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── win │ │ │ └── lib │ │ │ ├── netcoreapp3.0 │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ └── System.Windows.Extensions.dll │ │ │ ├── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ └── netstandard2.0 │ │ │ ├── System.Runtime.Caching.dll │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ ├── obj │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── WebAPI.AssemblyInfo.cs │ │ │ │ ├── WebAPI.AssemblyInfoInputs.cache │ │ │ │ ├── WebAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── WebAPI.GlobalUsings.g.cs │ │ │ │ ├── WebAPI.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── WebAPI.assets.cache │ │ │ │ ├── WebAPI.csproj.AssemblyReference.cache │ │ │ │ ├── WebAPI.csproj.CopyComplete │ │ │ │ ├── WebAPI.csproj.CoreCompileInputs.cache │ │ │ │ ├── WebAPI.csproj.FileListAbsolute.txt │ │ │ │ ├── WebAPI.dll │ │ │ │ ├── WebAPI.genruntimeconfig.cache │ │ │ │ ├── WebAPI.pdb │ │ │ │ ├── apphost.exe │ │ │ │ ├── project.razor.json │ │ │ │ ├── ref │ │ │ │ └── WebAPI.dll │ │ │ │ ├── refint │ │ │ │ └── WebAPI.dll │ │ │ │ └── staticwebassets.build.json │ │ ├── Release │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── WebAPI.AssemblyInfo.cs │ │ │ │ ├── WebAPI.AssemblyInfoInputs.cache │ │ │ │ ├── WebAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── WebAPI.GlobalUsings.g.cs │ │ │ │ ├── WebAPI.assets.cache │ │ │ │ └── WebAPI.csproj.AssemblyReference.cache │ │ ├── WebAPI.csproj.nuget.dgspec.json │ │ ├── WebAPI.csproj.nuget.g.props │ │ ├── WebAPI.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ └── staticwebassets.pack.sentinel │ └── wwwroot │ │ └── Uploads │ │ └── Images │ │ ├── 02cc7a15-d779-4e65-8c30-570a94160937.jpg │ │ ├── 1b497d1f-10e9-4d34-94f8-06b082dce205.jpg │ │ ├── 1c3eacf0-5c4a-4b1b-bd90-f135ddd68d88.jpg │ │ ├── 1cb904fb-4f2a-4643-94b9-fe423bd982b8.jpg │ │ ├── 1fadb002-22dd-4474-b271-70d3558e3314.jpg │ │ ├── 273ea1a9-30b4-4d3d-9a2f-e18736c7b941.jpg │ │ ├── 2d54c2bd-7d4c-4537-a385-8279406c1ae0.jpg │ │ ├── 2daa8a08-885c-4ee9-b510-01117d7444e2.jpg │ │ ├── 33fe47de-acc8-4e51-be92-06ce81febc09.jpg │ │ ├── 3473f588-dd0a-45ae-99fa-bf01c8dfb612.jpg │ │ ├── 4c87ba97-a4a6-4ac2-bc0b-2567105cdb0c.jpg │ │ ├── 6241c90d-4e58-4a5d-9070-376d052c9f3d.jpg │ │ ├── 62bf5f92-0519-4449-807a-64129221c78b.jpg │ │ ├── 63d8a9c6-6d27-45cb-82bf-673e3a3f2a0b.jpg │ │ ├── 66ec859a-4331-4bfa-8499-7a25ef07a92c.jpg │ │ ├── 682639c8-35c7-4a7e-ad34-51a2c62c9ee2.jpg │ │ ├── 6d2a3515-aece-4d09-9fca-bf1fdd1c7d51.jpg │ │ ├── 6ef325fd-e046-446d-8187-72f34611650b.jpg │ │ ├── 741a30be-7e3c-4b23-af31-dcf64c17bb35.jpg │ │ ├── 75cc9f50-93c7-43ad-a248-6a6b47a0ed32.jpg │ │ ├── 8b40efe0-a02f-47b4-a44e-e9e9dda220e9.png │ │ ├── 8ba67090-909e-4548-9384-b5f0c7916a45.png │ │ ├── 9c5aa6bd-79f6-49de-b508-a82b5243c8bc.jpg │ │ ├── a534caa7-2d6f-4ef3-ad0e-6ea52ad62d9e.jpg │ │ ├── b4d2272d-6912-44d1-a89f-caeccf3996c1.jpg │ │ ├── b7b60b7d-5682-4cf5-b180-746eb3da3a9e.jpg │ │ ├── ba78aea8-3e4d-4a3e-85a2-46ac7b5557e7.png │ │ ├── c9967a82-64bd-4c63-9b04-8d63411a80c0.jpg │ │ ├── d62ffb02-8985-4e41-9ed1-f7d8d732d8fb.jpg │ │ ├── e934ff4c-0192-4542-a403-f54da450322a.jpg │ │ ├── e9f3f786-8add-446a-88e3-8347baa35fad.jpg │ │ ├── f020f3bf-1495-4460-bbee-2f9c3c85623f.jpg │ │ └── f1f4a87e-b198-47ab-94a4-37b3eb5f6724.jpg └── project-server.sln └── screenshots-readme ├── 1-login.png ├── 10-givenOffers.png ├── 11-givenOffers-approved.png ├── 12-givenoffers-bought.png ├── 13-takenOffers.png ├── 14-takenOffers-approved.png ├── 15-takenOffers-bought.png ├── 16-purchasedProducts.png ├── 17-soldedProducts-drowdown.png ├── 18-soldedProductss.png ├── 19-payment.png ├── 2-home.png ├── 2-login-darkmode.png ├── 2-register.png ├── 20-payment-saveCreditCard.png ├── 21-payment-savedCard.png ├── 22-profile.png ├── 23-creditCard.png ├── 24-changeUserDetails.png ├── 25-changePassword.png ├── 26-dashboard-products.png ├── 27-dashboard-categories.png ├── 27-dashboard-usingStates.png ├── 28-dashboard-brands.png ├── 29-dashboard-colors.png ├── 3-main.png ├── 30-dashboard-users.png ├── 31-dashboard-creditcards.png ├── 32-categories-editting.png ├── 32-colors-editting.png ├── 32-products-responsive.png ├── 33-notFoundPage.png ├── 33-profile-responsive.png ├── 34-swagger-login.png ├── 35-swagger-1.png ├── 35-swagger-2.png ├── 35-swagger-productmethods.png ├── 36-swagger-3.png ├── 37-swagger-4.png ├── 4-main-dark.png ├── 5-main-takenProduct.png ├── 6-addProduct.png ├── 7-productDetails.png ├── 8-offerForProduct.png ├── 9-offerForProduct-dark-offered.png └── database.png /.github/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/README.md -------------------------------------------------------------------------------- /project-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/README.md -------------------------------------------------------------------------------- /project-client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/package-lock.json -------------------------------------------------------------------------------- /project-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/package.json -------------------------------------------------------------------------------- /project-client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/postcss.config.js -------------------------------------------------------------------------------- /project-client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/public/favicon.ico -------------------------------------------------------------------------------- /project-client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/public/index.html -------------------------------------------------------------------------------- /project-client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/public/logo192.png -------------------------------------------------------------------------------- /project-client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/public/logo512.png -------------------------------------------------------------------------------- /project-client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/public/manifest.json -------------------------------------------------------------------------------- /project-client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/public/robots.txt -------------------------------------------------------------------------------- /project-client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/App.jsx -------------------------------------------------------------------------------- /project-client/src/assets/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/assets/default.png -------------------------------------------------------------------------------- /project-client/src/assets/home-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/assets/home-background.png -------------------------------------------------------------------------------- /project-client/src/assets/profileDefaultImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/assets/profileDefaultImage.jpg -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlBrands.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlBrands.jsx -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlCategories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlCategories.jsx -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlColors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlColors.jsx -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlCreditCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlCreditCards.jsx -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlOffers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlOffers.jsx -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlProducts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlProducts.jsx -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlUsers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlUsers.jsx -------------------------------------------------------------------------------- /project-client/src/components/dashboard/ControlUsingStates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/dashboard/ControlUsingStates.jsx -------------------------------------------------------------------------------- /project-client/src/components/footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/footer/Footer.jsx -------------------------------------------------------------------------------- /project-client/src/components/home/brand/Brands.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/home/brand/Brands.jsx -------------------------------------------------------------------------------- /project-client/src/components/home/category/Categories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/home/category/Categories.jsx -------------------------------------------------------------------------------- /project-client/src/components/home/color/Colors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/home/color/Colors.jsx -------------------------------------------------------------------------------- /project-client/src/components/home/usingState/UsingStates.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/home/usingState/UsingStates.jsx -------------------------------------------------------------------------------- /project-client/src/components/navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/navbar/Navbar.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/ChangePassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/ChangePassword.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/CreditCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/CreditCard.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/GivenOffers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/GivenOffers.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/ProfileMain.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/ProfileMain.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/PurchasedProducts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/PurchasedProducts.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/SoldedProducts.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/SoldedProducts.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/TakenOffers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/TakenOffers.jsx -------------------------------------------------------------------------------- /project-client/src/components/profile/UpdateUser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/components/profile/UpdateUser.jsx -------------------------------------------------------------------------------- /project-client/src/context/AuthContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/AuthContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/BrandContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/BrandContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/CategoryContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/CategoryContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/ColorContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/ColorContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/CreditCardContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/CreditCardContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/FileContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/FileContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/FilterContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/FilterContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/NaviContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/NaviContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/OfferContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/OfferContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/PaymentContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/PaymentContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/ProductContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/ProductContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/SubmitContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/SubmitContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/ThemeContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/ThemeContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/UserContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/UserContext.jsx -------------------------------------------------------------------------------- /project-client/src/context/UsingStateContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/context/UsingStateContext.jsx -------------------------------------------------------------------------------- /project-client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/index.js -------------------------------------------------------------------------------- /project-client/src/pages/dashboard/Dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/dashboard/Dashboard.jsx -------------------------------------------------------------------------------- /project-client/src/pages/home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/home/Home.jsx -------------------------------------------------------------------------------- /project-client/src/pages/login/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/login/Login.jsx -------------------------------------------------------------------------------- /project-client/src/pages/main/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/main/Main.jsx -------------------------------------------------------------------------------- /project-client/src/pages/page404/Page404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/page404/Page404.jsx -------------------------------------------------------------------------------- /project-client/src/pages/product/AddProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/product/AddProduct.jsx -------------------------------------------------------------------------------- /project-client/src/pages/product/OfferForProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/product/OfferForProduct.jsx -------------------------------------------------------------------------------- /project-client/src/pages/product/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/product/Payment.jsx -------------------------------------------------------------------------------- /project-client/src/pages/product/ProductDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/product/ProductDetails.jsx -------------------------------------------------------------------------------- /project-client/src/pages/product/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/product/Products.jsx -------------------------------------------------------------------------------- /project-client/src/pages/product/UpdateProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/product/UpdateProduct.jsx -------------------------------------------------------------------------------- /project-client/src/pages/profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/profile/Profile.jsx -------------------------------------------------------------------------------- /project-client/src/pages/register/Register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/pages/register/Register.jsx -------------------------------------------------------------------------------- /project-client/src/services/authService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/authService.js -------------------------------------------------------------------------------- /project-client/src/services/brandService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/brandService.js -------------------------------------------------------------------------------- /project-client/src/services/categoryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/categoryService.js -------------------------------------------------------------------------------- /project-client/src/services/colorService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/colorService.js -------------------------------------------------------------------------------- /project-client/src/services/creditCardService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/creditCardService.js -------------------------------------------------------------------------------- /project-client/src/services/localStorageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/localStorageService.js -------------------------------------------------------------------------------- /project-client/src/services/offerService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/offerService.js -------------------------------------------------------------------------------- /project-client/src/services/productImageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/productImageService.js -------------------------------------------------------------------------------- /project-client/src/services/productService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/productService.js -------------------------------------------------------------------------------- /project-client/src/services/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/request.js -------------------------------------------------------------------------------- /project-client/src/services/userService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/userService.js -------------------------------------------------------------------------------- /project-client/src/services/usingStateService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/services/usingStateService.js -------------------------------------------------------------------------------- /project-client/src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/tailwind.css -------------------------------------------------------------------------------- /project-client/src/validations/changePasswordSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/changePasswordSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/controlSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/controlSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/loginSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/loginSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/offerSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/offerSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/paymentSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/paymentSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/productSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/productSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/registerSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/registerSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/updateProductSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/updateProductSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/updateUserSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/updateUserSchema.js -------------------------------------------------------------------------------- /project-client/src/validations/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/src/validations/validation.js -------------------------------------------------------------------------------- /project-client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-client/tailwind.config.js -------------------------------------------------------------------------------- /project-server/Business/Abstract/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IAuthService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IBrandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IBrandService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/ICategoryService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IColorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IColorService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/ICreditCardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/ICreditCardService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IOfferService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IOfferService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IProductImageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IProductImageService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IProductService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IUserOperationClaimService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IUserOperationClaimService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /project-server/Business/Abstract/IUsingStateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Abstract/IUsingStateService.cs -------------------------------------------------------------------------------- /project-server/Business/Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Business.csproj -------------------------------------------------------------------------------- /project-server/Business/BusinessAspects/Autofac/SecuredOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/BusinessAspects/Autofac/SecuredOperation.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/AuthManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/BrandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/BrandManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/CategoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/CategoryManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/ColorManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/CreditCardManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/CreditCardManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/OfferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/OfferManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/ProductImageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/ProductImageManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/ProductManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/ProductManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/UserManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/UserOperationClaimManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/UserOperationClaimManager.cs -------------------------------------------------------------------------------- /project-server/Business/Concrete/UsingStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Concrete/UsingStateManager.cs -------------------------------------------------------------------------------- /project-server/Business/Constants/FilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Constants/FilePath.cs -------------------------------------------------------------------------------- /project-server/Business/Constants/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/Constants/Messages.cs -------------------------------------------------------------------------------- /project-server/Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs -------------------------------------------------------------------------------- /project-server/Business/ValidationRules/FluentValidation/BrandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/ValidationRules/FluentValidation/BrandValidator.cs -------------------------------------------------------------------------------- /project-server/Business/ValidationRules/FluentValidation/CategoryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/ValidationRules/FluentValidation/CategoryValidator.cs -------------------------------------------------------------------------------- /project-server/Business/ValidationRules/FluentValidation/ColorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/ValidationRules/FluentValidation/ColorValidator.cs -------------------------------------------------------------------------------- /project-server/Business/ValidationRules/FluentValidation/ProductValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/ValidationRules/FluentValidation/ProductValidator.cs -------------------------------------------------------------------------------- /project-server/Business/ValidationRules/FluentValidation/UsingStateValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/ValidationRules/FluentValidation/UsingStateValidator.cs -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/Business.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/Business.deps.json -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/Business.dll -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/Business.pdb -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /project-server/Business/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /project-server/Business/obj/Business.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Business.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /project-server/Business/obj/Business.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Business.csproj.nuget.g.props -------------------------------------------------------------------------------- /project-server/Business/obj/Business.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Business.csproj.nuget.g.targets -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.assets.cache -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 63259dcc6347dff0c988d7b76fa518382af2dc39 2 | -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.dll -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/Business.pdb -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/ref/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/ref/Business.dll -------------------------------------------------------------------------------- /project-server/Business/obj/Debug/net6.0/refint/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Debug/net6.0/refint/Business.dll -------------------------------------------------------------------------------- /project-server/Business/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/Business/obj/Release/net6.0/Business.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Release/net6.0/Business.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/Business/obj/Release/net6.0/Business.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e39b5ed28208f2064efb1a6ea2035a20ece5575d 2 | -------------------------------------------------------------------------------- /project-server/Business/obj/Release/net6.0/Business.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Release/net6.0/Business.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/Business/obj/Release/net6.0/Business.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Release/net6.0/Business.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/Business/obj/Release/net6.0/Business.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Release/net6.0/Business.assets.cache -------------------------------------------------------------------------------- /project-server/Business/obj/Release/net6.0/Business.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/Release/net6.0/Business.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/Business/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/project.assets.json -------------------------------------------------------------------------------- /project-server/Business/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Business/obj/project.nuget.cache -------------------------------------------------------------------------------- /project-server/ConsoleUI/ConsoleUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/ConsoleUI.csproj -------------------------------------------------------------------------------- /project-server/ConsoleUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/Program.cs -------------------------------------------------------------------------------- /project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.deps.json -------------------------------------------------------------------------------- /project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.dll -------------------------------------------------------------------------------- /project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.exe -------------------------------------------------------------------------------- /project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.pdb -------------------------------------------------------------------------------- /project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/bin/Debug/net6.0/ConsoleUI.runtimeconfig.json -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/ConsoleUI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/ConsoleUI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/ConsoleUI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/ConsoleUI.csproj.nuget.g.props -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/ConsoleUI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/ConsoleUI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7dd3e5e18f7a80fc6a80514fc5d7f280648f458b 2 | -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.assets.cache -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 275c76486e20fc932341d39a5205401802292eb6 2 | -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.dll -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1cb1592245e7dd7733669a750d87fc6b60d1369a 2 | -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ConsoleUI.pdb -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/ref/ConsoleUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/ref/ConsoleUI.dll -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Debug/net6.0/refint/ConsoleUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Debug/net6.0/refint/ConsoleUI.dll -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | dade2133dc70b018ba655b18193b8b1ddd89f21f 2 | -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.assets.cache -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/Release/net6.0/ConsoleUI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/project.assets.json -------------------------------------------------------------------------------- /project-server/ConsoleUI/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/ConsoleUI/obj/project.nuget.cache -------------------------------------------------------------------------------- /project-server/Core/Aspects/Autofac/Validation/ValidationAspect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Aspects/Autofac/Validation/ValidationAspect.cs -------------------------------------------------------------------------------- /project-server/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Core.csproj -------------------------------------------------------------------------------- /project-server/Core/CrossCuttingConcerns/Validation/ValidationTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/CrossCuttingConcerns/Validation/ValidationTool.cs -------------------------------------------------------------------------------- /project-server/Core/DependencyResolvers/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/DependencyResolvers/CoreModule.cs -------------------------------------------------------------------------------- /project-server/Core/Entities/Concrete/OperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Entities/Concrete/OperationClaim.cs -------------------------------------------------------------------------------- /project-server/Core/Entities/Concrete/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Entities/Concrete/User.cs -------------------------------------------------------------------------------- /project-server/Core/Entities/Concrete/UserOperationClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Entities/Concrete/UserOperationClaim.cs -------------------------------------------------------------------------------- /project-server/Core/Entities/Dtos/ChangePasswordDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Entities/Dtos/ChangePasswordDto.cs -------------------------------------------------------------------------------- /project-server/Core/Entities/Dtos/UserDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Entities/Dtos/UserDetailDto.cs -------------------------------------------------------------------------------- /project-server/Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Entities/IDto.cs -------------------------------------------------------------------------------- /project-server/Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /project-server/Core/Extensions/ClaimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Extensions/ClaimExtensions.cs -------------------------------------------------------------------------------- /project-server/Core/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /project-server/Core/Extensions/ErrorDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Extensions/ErrorDetails.cs -------------------------------------------------------------------------------- /project-server/Core/Extensions/ExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Extensions/ExceptionMiddleware.cs -------------------------------------------------------------------------------- /project-server/Core/Extensions/ExceptionMiddlewareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Extensions/ExceptionMiddlewareExtensions.cs -------------------------------------------------------------------------------- /project-server/Core/Extensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Extensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Business/BusinessRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Business/BusinessRules.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Configurations/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Configurations/Configuration.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Helpers/FileHelper/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Helpers/FileHelper/FileHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Helpers/FileHelper/IFileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Helpers/FileHelper/IFileHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Helpers/GuidHelper/GuiddHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Helpers/GuidHelper/GuiddHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Interceptors/AspectInterceptorSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Interceptors/AspectInterceptorSelector.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Interceptors/MethodInterception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Interceptors/MethodInterception.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Interceptors/MethodInterceptionBaseAttribute.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/IoC/ICoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/IoC/ICoreModule.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/IoC/ServiceTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/IoC/ServiceTool.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/DataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/DataResult.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/ErrorDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/ErrorDataResult.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/ErrorResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/ErrorResult.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/IDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/IDataResult.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/IResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/IResult.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/Result.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/SuccessDataResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/SuccessDataResult.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Results/SuccessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Results/SuccessResult.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Security/Encryption/SecurityKeyHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Security/Encryption/SecurityKeyHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Security/Encryption/SigningCredentialsHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Security/Hashing/HashingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Security/Hashing/HashingHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Security/JWT/AccessToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Security/JWT/AccessToken.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Security/JWT/ITokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Security/JWT/ITokenHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Security/JWT/JwtHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Security/JWT/JwtHelper.cs -------------------------------------------------------------------------------- /project-server/Core/Utilities/Security/JWT/TokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/Utilities/Security/JWT/TokenOptions.cs -------------------------------------------------------------------------------- /project-server/Core/bin/Debug/net6.0/Core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/bin/Debug/net6.0/Core.deps.json -------------------------------------------------------------------------------- /project-server/Core/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /project-server/Core/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /project-server/Core/bin/Debug/net6.0/Core.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/bin/Debug/net6.0/Core.runtimeconfig.json -------------------------------------------------------------------------------- /project-server/Core/obj/Core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Core.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /project-server/Core/obj/Core.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Core.csproj.nuget.g.props -------------------------------------------------------------------------------- /project-server/Core/obj/Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Core.csproj.nuget.g.targets -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bb70b8d99ff9108d5c8f3ce9e50331d5e1228212 2 | -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.assets.cache -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 14d295c7600f540dc902da58db9f43dbfe3a5de5 2 | -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/ref/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/ref/Core.dll -------------------------------------------------------------------------------- /project-server/Core/obj/Debug/net6.0/refint/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Debug/net6.0/refint/Core.dll -------------------------------------------------------------------------------- /project-server/Core/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/Core/obj/Release/net6.0/Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Release/net6.0/Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/Core/obj/Release/net6.0/Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 28e9604a94587320e718fe397f8f2eb04b1be130 2 | -------------------------------------------------------------------------------- /project-server/Core/obj/Release/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Release/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/Core/obj/Release/net6.0/Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Release/net6.0/Core.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/Core/obj/Release/net6.0/Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Release/net6.0/Core.assets.cache -------------------------------------------------------------------------------- /project-server/Core/obj/Release/net6.0/Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/Release/net6.0/Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/Core/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/project.assets.json -------------------------------------------------------------------------------- /project-server/Core/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Core/obj/project.nuget.cache -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IBrandDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/ICategoryDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/ICategoryDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IColorDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/ICreditCardDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/ICreditCardDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IOfferDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IOfferDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IProductDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IProductDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IProductImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IProductImageDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IUserDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IUserOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IUserOperationClaimDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Abstract/IUsingStateDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Abstract/IUsingStateDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/Context/PrimeforContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/Context/PrimeforContext.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfBrandDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfBrandDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfCategoryDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfCategoryDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfColorDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfColorDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfCreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfCreditCard.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfOfferDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfOfferDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfProductDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfProductDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfProductImageDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfProductImageDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfUserDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfUserOperationClaimDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfUserOperationClaimDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Concrete/EntityFramework/EfUsingStateDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Concrete/EntityFramework/EfUsingStateDal.cs -------------------------------------------------------------------------------- /project-server/DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/DataAccess.csproj -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220805053118_mig1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220805053118_mig1.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220805053118_mig1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220805053118_mig1.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220808134929_mig2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220808134929_mig2.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220808134929_mig2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220808134929_mig2.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220808144649_mig3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220808144649_mig3.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220808144649_mig3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220808144649_mig3.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220809061103_mig4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220809061103_mig4.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220809061103_mig4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220809061103_mig4.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220818074014_mig5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220818074014_mig5.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220818074014_mig5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220818074014_mig5.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220829203044_mig6.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220829203044_mig6.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220829203044_mig6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220829203044_mig6.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220829203452_mig7.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220829203452_mig7.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220829203452_mig7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220829203452_mig7.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220830052155_mig8.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220830052155_mig8.Designer.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/20220830052155_mig8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/20220830052155_mig8.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Migrations/PrimeforContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Migrations/PrimeforContextModelSnapshot.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Repository/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Repository/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Repository/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Repository/IEntityRepository.cs -------------------------------------------------------------------------------- /project-server/DataAccess/Repository/UnitOfWork/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/Repository/UnitOfWork/IUnitOfWork.cs -------------------------------------------------------------------------------- /project-server/DataAccess/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /project-server/DataAccess/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /project-server/DataAccess/bin/Debug/net6.0/DataAccess.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/bin/Debug/net6.0/DataAccess.deps.json -------------------------------------------------------------------------------- /project-server/DataAccess/bin/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/bin/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /project-server/DataAccess/bin/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/bin/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /project-server/DataAccess/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /project-server/DataAccess/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /project-server/DataAccess/obj/DataAccess.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/DataAccess.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /project-server/DataAccess/obj/DataAccess.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/DataAccess.csproj.nuget.g.props -------------------------------------------------------------------------------- /project-server/DataAccess/obj/DataAccess.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/DataAccess.csproj.nuget.g.targets -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6d4e2c1d9f6ac45f776d2f2ae5ef73593c1376b9 2 | -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.assets.cache -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 30e0ef908fb3e29ede87c9283ec44386d3e31aeb 2 | -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/ref/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/ref/DataAccess.dll -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Debug/net6.0/refint/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Debug/net6.0/refint/DataAccess.dll -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Release/net6.0/DataAccess.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Release/net6.0/DataAccess.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Release/net6.0/DataAccess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | db47a8b192fdd690b3c97d682b7f45f2309fd5d2 2 | -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Release/net6.0/DataAccess.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Release/net6.0/DataAccess.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Release/net6.0/DataAccess.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Release/net6.0/DataAccess.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Release/net6.0/DataAccess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Release/net6.0/DataAccess.assets.cache -------------------------------------------------------------------------------- /project-server/DataAccess/obj/Release/net6.0/DataAccess.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/Release/net6.0/DataAccess.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/DataAccess/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/project.assets.json -------------------------------------------------------------------------------- /project-server/DataAccess/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/DataAccess/obj/project.nuget.cache -------------------------------------------------------------------------------- /project-server/Entities/Concrete/Brand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/Brand.cs -------------------------------------------------------------------------------- /project-server/Entities/Concrete/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/Category.cs -------------------------------------------------------------------------------- /project-server/Entities/Concrete/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/Color.cs -------------------------------------------------------------------------------- /project-server/Entities/Concrete/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/CreditCard.cs -------------------------------------------------------------------------------- /project-server/Entities/Concrete/Offer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/Offer.cs -------------------------------------------------------------------------------- /project-server/Entities/Concrete/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/Product.cs -------------------------------------------------------------------------------- /project-server/Entities/Concrete/ProductImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/ProductImage.cs -------------------------------------------------------------------------------- /project-server/Entities/Concrete/UsingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Concrete/UsingState.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/BrandForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/BrandForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/CategoryForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/CategoryForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/ChangePasswordDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/ChangePasswordDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/ColorForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/ColorForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/CreditCardDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/CreditCardDetailDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/CreditCardForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/CreditCardForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/OfferDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/OfferDetailDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/OfferForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/OfferForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/ProductDetailDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/ProductDetailDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/ProductForAddDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/ProductForAddDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/ProductForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/ProductForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/UserForLoginDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/UserForRegisterDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/UserForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/UserForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Dtos/UsingStateForUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Dtos/UsingStateForUpdateDto.cs -------------------------------------------------------------------------------- /project-server/Entities/Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/Entities.csproj -------------------------------------------------------------------------------- /project-server/Entities/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /project-server/Entities/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /project-server/Entities/bin/Debug/net6.0/Entities.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/bin/Debug/net6.0/Entities.deps.json -------------------------------------------------------------------------------- /project-server/Entities/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /project-server/Entities/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6efefbace1bafaab5616b3f0e8985359045640cb 2 | -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.assets.cache -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 537618801fe2742380bd5a2938b1025de5734f35 2 | -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/ref/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/ref/Entities.dll -------------------------------------------------------------------------------- /project-server/Entities/obj/Debug/net6.0/refint/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Debug/net6.0/refint/Entities.dll -------------------------------------------------------------------------------- /project-server/Entities/obj/Entities.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Entities.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /project-server/Entities/obj/Entities.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Entities.csproj.nuget.g.props -------------------------------------------------------------------------------- /project-server/Entities/obj/Entities.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Entities.csproj.nuget.g.targets -------------------------------------------------------------------------------- /project-server/Entities/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/Entities/obj/Release/net6.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Release/net6.0/Entities.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/Entities/obj/Release/net6.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | daf4bb6c388438db313cca22a3163c2ef9712b8e 2 | -------------------------------------------------------------------------------- /project-server/Entities/obj/Release/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Release/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/Entities/obj/Release/net6.0/Entities.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Release/net6.0/Entities.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/Entities/obj/Release/net6.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Release/net6.0/Entities.assets.cache -------------------------------------------------------------------------------- /project-server/Entities/obj/Release/net6.0/Entities.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/Release/net6.0/Entities.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/Entities/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/project.assets.json -------------------------------------------------------------------------------- /project-server/Entities/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/Entities/obj/project.nuget.cache -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/AuthController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/BrandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/BrandsController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/CategoriesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/CategoriesController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/ColorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/ColorsController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/CreditCardsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/CreditCardsController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/OffersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/OffersController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/ProductImagesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/ProductImagesController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/UsersController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Controllers/UsingStatesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Controllers/UsingStatesController.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Program.cs -------------------------------------------------------------------------------- /project-server/WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /project-server/WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/WebAPI.csproj -------------------------------------------------------------------------------- /project-server/WebAPI/WebAPI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/WebAPI.csproj.user -------------------------------------------------------------------------------- /project-server/WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /project-server/WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/appsettings.json -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Autofac.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Autofac.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Autofac.Extras.DynamicProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Autofac.Extras.DynamicProxy.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Autofac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Autofac.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Business.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Business.pdb -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Castle.Core.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/FluentValidation.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Humanizer.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/WebAPI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/WebAPI.deps.json -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/WebAPI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/WebAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/WebAPI.exe -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/WebAPI.pdb -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/WebAPI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/WebAPI.runtimeconfig.json -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.assets.cache -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ad8f0eb801ba44f0ed1d2be5449103762f8d8333 2 | -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 99968f2f1f628853ab38d080b5751001abf4a55e 2 | -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/WebAPI.pdb -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/project.razor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/project.razor.json -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/ref/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/ref/WebAPI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/refint/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/refint/WebAPI.dll -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Release/net6.0/WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Release/net6.0/WebAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Release/net6.0/WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 82640d98cd2c5f29cbe11354a9b2186698b47f01 2 | -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Release/net6.0/WebAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Release/net6.0/WebAPI.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Release/net6.0/WebAPI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Release/net6.0/WebAPI.GlobalUsings.g.cs -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Release/net6.0/WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Release/net6.0/WebAPI.assets.cache -------------------------------------------------------------------------------- /project-server/WebAPI/obj/Release/net6.0/WebAPI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/Release/net6.0/WebAPI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /project-server/WebAPI/obj/WebAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/WebAPI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /project-server/WebAPI/obj/WebAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/WebAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /project-server/WebAPI/obj/WebAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/WebAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /project-server/WebAPI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/project.assets.json -------------------------------------------------------------------------------- /project-server/WebAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/project.nuget.cache -------------------------------------------------------------------------------- /project-server/WebAPI/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/obj/staticwebassets.pack.sentinel -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/02cc7a15-d779-4e65-8c30-570a94160937.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/02cc7a15-d779-4e65-8c30-570a94160937.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/1b497d1f-10e9-4d34-94f8-06b082dce205.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/1b497d1f-10e9-4d34-94f8-06b082dce205.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/1c3eacf0-5c4a-4b1b-bd90-f135ddd68d88.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/1c3eacf0-5c4a-4b1b-bd90-f135ddd68d88.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/1cb904fb-4f2a-4643-94b9-fe423bd982b8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/1cb904fb-4f2a-4643-94b9-fe423bd982b8.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/1fadb002-22dd-4474-b271-70d3558e3314.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/1fadb002-22dd-4474-b271-70d3558e3314.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/273ea1a9-30b4-4d3d-9a2f-e18736c7b941.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/273ea1a9-30b4-4d3d-9a2f-e18736c7b941.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/2d54c2bd-7d4c-4537-a385-8279406c1ae0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/2d54c2bd-7d4c-4537-a385-8279406c1ae0.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/2daa8a08-885c-4ee9-b510-01117d7444e2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/2daa8a08-885c-4ee9-b510-01117d7444e2.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/33fe47de-acc8-4e51-be92-06ce81febc09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/33fe47de-acc8-4e51-be92-06ce81febc09.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/3473f588-dd0a-45ae-99fa-bf01c8dfb612.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/3473f588-dd0a-45ae-99fa-bf01c8dfb612.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/4c87ba97-a4a6-4ac2-bc0b-2567105cdb0c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/4c87ba97-a4a6-4ac2-bc0b-2567105cdb0c.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/6241c90d-4e58-4a5d-9070-376d052c9f3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/6241c90d-4e58-4a5d-9070-376d052c9f3d.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/62bf5f92-0519-4449-807a-64129221c78b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/62bf5f92-0519-4449-807a-64129221c78b.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/63d8a9c6-6d27-45cb-82bf-673e3a3f2a0b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/63d8a9c6-6d27-45cb-82bf-673e3a3f2a0b.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/66ec859a-4331-4bfa-8499-7a25ef07a92c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/66ec859a-4331-4bfa-8499-7a25ef07a92c.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/682639c8-35c7-4a7e-ad34-51a2c62c9ee2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/682639c8-35c7-4a7e-ad34-51a2c62c9ee2.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/6d2a3515-aece-4d09-9fca-bf1fdd1c7d51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/6d2a3515-aece-4d09-9fca-bf1fdd1c7d51.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/6ef325fd-e046-446d-8187-72f34611650b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/6ef325fd-e046-446d-8187-72f34611650b.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/741a30be-7e3c-4b23-af31-dcf64c17bb35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/741a30be-7e3c-4b23-af31-dcf64c17bb35.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/75cc9f50-93c7-43ad-a248-6a6b47a0ed32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/75cc9f50-93c7-43ad-a248-6a6b47a0ed32.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/8b40efe0-a02f-47b4-a44e-e9e9dda220e9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/8b40efe0-a02f-47b4-a44e-e9e9dda220e9.png -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/8ba67090-909e-4548-9384-b5f0c7916a45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/8ba67090-909e-4548-9384-b5f0c7916a45.png -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/9c5aa6bd-79f6-49de-b508-a82b5243c8bc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/9c5aa6bd-79f6-49de-b508-a82b5243c8bc.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/a534caa7-2d6f-4ef3-ad0e-6ea52ad62d9e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/a534caa7-2d6f-4ef3-ad0e-6ea52ad62d9e.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/b4d2272d-6912-44d1-a89f-caeccf3996c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/b4d2272d-6912-44d1-a89f-caeccf3996c1.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/b7b60b7d-5682-4cf5-b180-746eb3da3a9e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/b7b60b7d-5682-4cf5-b180-746eb3da3a9e.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/ba78aea8-3e4d-4a3e-85a2-46ac7b5557e7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/ba78aea8-3e4d-4a3e-85a2-46ac7b5557e7.png -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/c9967a82-64bd-4c63-9b04-8d63411a80c0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/c9967a82-64bd-4c63-9b04-8d63411a80c0.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/d62ffb02-8985-4e41-9ed1-f7d8d732d8fb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/d62ffb02-8985-4e41-9ed1-f7d8d732d8fb.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/e934ff4c-0192-4542-a403-f54da450322a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/e934ff4c-0192-4542-a403-f54da450322a.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/e9f3f786-8add-446a-88e3-8347baa35fad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/e9f3f786-8add-446a-88e3-8347baa35fad.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/f020f3bf-1495-4460-bbee-2f9c3c85623f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/f020f3bf-1495-4460-bbee-2f9c3c85623f.jpg -------------------------------------------------------------------------------- /project-server/WebAPI/wwwroot/Uploads/Images/f1f4a87e-b198-47ab-94a4-37b3eb5f6724.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/WebAPI/wwwroot/Uploads/Images/f1f4a87e-b198-47ab-94a4-37b3eb5f6724.jpg -------------------------------------------------------------------------------- /project-server/project-server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/project-server/project-server.sln -------------------------------------------------------------------------------- /screenshots-readme/1-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/1-login.png -------------------------------------------------------------------------------- /screenshots-readme/10-givenOffers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/10-givenOffers.png -------------------------------------------------------------------------------- /screenshots-readme/11-givenOffers-approved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/11-givenOffers-approved.png -------------------------------------------------------------------------------- /screenshots-readme/12-givenoffers-bought.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/12-givenoffers-bought.png -------------------------------------------------------------------------------- /screenshots-readme/13-takenOffers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/13-takenOffers.png -------------------------------------------------------------------------------- /screenshots-readme/14-takenOffers-approved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/14-takenOffers-approved.png -------------------------------------------------------------------------------- /screenshots-readme/15-takenOffers-bought.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/15-takenOffers-bought.png -------------------------------------------------------------------------------- /screenshots-readme/16-purchasedProducts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/16-purchasedProducts.png -------------------------------------------------------------------------------- /screenshots-readme/17-soldedProducts-drowdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/17-soldedProducts-drowdown.png -------------------------------------------------------------------------------- /screenshots-readme/18-soldedProductss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/18-soldedProductss.png -------------------------------------------------------------------------------- /screenshots-readme/19-payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/19-payment.png -------------------------------------------------------------------------------- /screenshots-readme/2-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/2-home.png -------------------------------------------------------------------------------- /screenshots-readme/2-login-darkmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/2-login-darkmode.png -------------------------------------------------------------------------------- /screenshots-readme/2-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/2-register.png -------------------------------------------------------------------------------- /screenshots-readme/20-payment-saveCreditCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/20-payment-saveCreditCard.png -------------------------------------------------------------------------------- /screenshots-readme/21-payment-savedCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/21-payment-savedCard.png -------------------------------------------------------------------------------- /screenshots-readme/22-profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/22-profile.png -------------------------------------------------------------------------------- /screenshots-readme/23-creditCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/23-creditCard.png -------------------------------------------------------------------------------- /screenshots-readme/24-changeUserDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/24-changeUserDetails.png -------------------------------------------------------------------------------- /screenshots-readme/25-changePassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/25-changePassword.png -------------------------------------------------------------------------------- /screenshots-readme/26-dashboard-products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/26-dashboard-products.png -------------------------------------------------------------------------------- /screenshots-readme/27-dashboard-categories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/27-dashboard-categories.png -------------------------------------------------------------------------------- /screenshots-readme/27-dashboard-usingStates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/27-dashboard-usingStates.png -------------------------------------------------------------------------------- /screenshots-readme/28-dashboard-brands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/28-dashboard-brands.png -------------------------------------------------------------------------------- /screenshots-readme/29-dashboard-colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/29-dashboard-colors.png -------------------------------------------------------------------------------- /screenshots-readme/3-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/3-main.png -------------------------------------------------------------------------------- /screenshots-readme/30-dashboard-users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/30-dashboard-users.png -------------------------------------------------------------------------------- /screenshots-readme/31-dashboard-creditcards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/31-dashboard-creditcards.png -------------------------------------------------------------------------------- /screenshots-readme/32-categories-editting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/32-categories-editting.png -------------------------------------------------------------------------------- /screenshots-readme/32-colors-editting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/32-colors-editting.png -------------------------------------------------------------------------------- /screenshots-readme/32-products-responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/32-products-responsive.png -------------------------------------------------------------------------------- /screenshots-readme/33-notFoundPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/33-notFoundPage.png -------------------------------------------------------------------------------- /screenshots-readme/33-profile-responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/33-profile-responsive.png -------------------------------------------------------------------------------- /screenshots-readme/34-swagger-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/34-swagger-login.png -------------------------------------------------------------------------------- /screenshots-readme/35-swagger-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/35-swagger-1.png -------------------------------------------------------------------------------- /screenshots-readme/35-swagger-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/35-swagger-2.png -------------------------------------------------------------------------------- /screenshots-readme/35-swagger-productmethods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/35-swagger-productmethods.png -------------------------------------------------------------------------------- /screenshots-readme/36-swagger-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/36-swagger-3.png -------------------------------------------------------------------------------- /screenshots-readme/37-swagger-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/37-swagger-4.png -------------------------------------------------------------------------------- /screenshots-readme/4-main-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/4-main-dark.png -------------------------------------------------------------------------------- /screenshots-readme/5-main-takenProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/5-main-takenProduct.png -------------------------------------------------------------------------------- /screenshots-readme/6-addProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/6-addProduct.png -------------------------------------------------------------------------------- /screenshots-readme/7-productDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/7-productDetails.png -------------------------------------------------------------------------------- /screenshots-readme/8-offerForProduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/8-offerForProduct.png -------------------------------------------------------------------------------- /screenshots-readme/9-offerForProduct-dark-offered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/9-offerForProduct-dark-offered.png -------------------------------------------------------------------------------- /screenshots-readme/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mustafahincal/alsat/HEAD/screenshots-readme/database.png --------------------------------------------------------------------------------