├── .DS_Store ├── .vscode └── settings.json ├── README.md └── src ├── .DS_Store ├── 10-Profil Bilgilerinin Güncellenmesi ├── .DS_Store ├── 1-Güncelleme Servisinin Yazılması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Güncelleme Formunun Hazırlanması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-Route Resolver │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 4-Güncellemenin Yapılması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db ├── 5-Kullanıcı Kayıt Formunun Detaylandırılması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db ├── 6-Tarih Bilgilerinin Düzenlenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db └── 7-LastActive Bilgisinin Güncellenmesi │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _resolvers │ │ │ │ └── member-edit.resolver.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── members │ │ │ │ ├── member-details │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ └── member-details.component.ts │ │ │ │ ├── member-edit │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ └── member-edit.component.ts │ │ │ │ └── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── photo-gallery │ │ │ │ ├── photo-gallery.component.css │ │ │ │ ├── photo-gallery.component.html │ │ │ │ └── photo-gallery.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── forms.css │ │ │ └── user.jpg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ ├── UserForRegisterDTO.cs │ └── UserForUpdateDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ ├── LastActiveActionFilter.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ └── social.db ├── 11-Kullanıcı Takip İşlemleri ├── .DS_Store ├── 1-Veri Tabanı Tablosu │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Kullanıcı Takip Servisinin Yazılması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db ├── 3-Takip Et Butonu │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db ├── 4-Takipçi Bilgileri İçin Servis Yazımı │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ │ ├── 20200615100209_updateUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── UserQueryParams.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 5-Takipçilerin Listelenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ │ ├── 20200615100209_updateUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── UserQueryParams.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal └── 6-Loading Ekranı │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _resolvers │ │ │ │ ├── member-details.resolver.ts │ │ │ │ └── member-edit.resolver.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── members │ │ │ │ ├── member-details │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ └── member-details.component.ts │ │ │ │ ├── member-edit │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ └── member-edit.component.ts │ │ │ │ └── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── photo-gallery │ │ │ │ ├── photo-gallery.component.css │ │ │ │ ├── photo-gallery.component.html │ │ │ │ └── photo-gallery.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── forms.css │ │ │ └── user.jpg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ ├── UserForRegisterDTO.cs │ └── UserForUpdateDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ ├── LastActiveActionFilter.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ ├── 20200614054721_addUserToUserEntity.cs │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ ├── 20200615100209_updateUserToUserEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ ├── User.cs │ ├── UserQueryParams.cs │ └── UserToUser.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 12-Filtreleme ├── .DS_Store ├── 1-Filtreleme Kriterlerinin Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ │ ├── 20200615100209_updateUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── UserQueryParams.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Filtreleme Formunun Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ │ ├── 20200615100209_updateUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── UserQueryParams.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-Servise Kayıt Sıralama Özelliğinin Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ │ ├── 20200615100209_updateUserToUserEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── UserQueryParams.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal └── 4-Seçilen Kritere Göre Sıralamanın Yapılması │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _resolvers │ │ │ │ ├── member-details.resolver.ts │ │ │ │ └── member-edit.resolver.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── members │ │ │ │ ├── member-details │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ └── member-details.component.ts │ │ │ │ ├── member-edit │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ └── member-edit.component.ts │ │ │ │ └── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── photo-gallery │ │ │ │ ├── photo-gallery.component.css │ │ │ │ ├── photo-gallery.component.html │ │ │ │ └── photo-gallery.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── forms.css │ │ │ └── user.jpg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ ├── UserForRegisterDTO.cs │ └── UserForUpdateDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ ├── LastActiveActionFilter.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ ├── 20200614054721_addUserToUserEntity.cs │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ ├── 20200615100209_updateUserToUserEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ ├── User.cs │ ├── UserQueryParams.cs │ └── UserToUser.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 13-Mesajlaşma ├── .DS_Store ├── 1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ │ ├── 20200615100209_updateUserToUserEntity.cs │ │ ├── 20200618200429_AddingEntityMessage.Designer.cs │ │ ├── 20200618200429_AddingEntityMessage.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Message.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── UserQueryParams.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Servis ile Mesaj Kaydının Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _models │ │ │ │ │ ├── image.ts │ │ │ │ │ └── user.ts │ │ │ │ ├── _resolvers │ │ │ │ │ ├── member-details.resolver.ts │ │ │ │ │ └── member-edit.resolver.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ ├── error.intercaptor.ts │ │ │ │ │ └── user.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── members │ │ │ │ │ ├── member-details │ │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ │ └── member-details.component.ts │ │ │ │ │ ├── member-edit │ │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ │ └── member-edit.component.ts │ │ │ │ │ └── member-list │ │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── photo-gallery │ │ │ │ │ ├── photo-gallery.component.css │ │ │ │ │ ├── photo-gallery.component.html │ │ │ │ │ └── photo-gallery.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── forms.css │ │ │ │ └── user.jpg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── MessagesController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ImagesForDetails.cs │ │ ├── MessageForCreateDTO.cs │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ ├── UserForRegisterDTO.cs │ │ └── UserForUpdateDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ ├── ExtensionMethods.cs │ │ ├── LastActiveActionFilter.cs │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ │ ├── 20200614054721_addUserToUserEntity.cs │ │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ │ ├── 20200615100209_updateUserToUserEntity.cs │ │ ├── 20200618200429_AddingEntityMessage.Designer.cs │ │ ├── 20200618200429_AddingEntityMessage.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Message.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ ├── User.cs │ │ ├── UserQueryParams.cs │ │ └── UserToUser.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal └── 3-Mesajın Gönderilmesi │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _resolvers │ │ │ │ ├── member-details.resolver.ts │ │ │ │ └── member-edit.resolver.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── members │ │ │ │ ├── member-details │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ └── member-details.component.ts │ │ │ │ ├── member-edit │ │ │ │ │ ├── member-edit.component.css │ │ │ │ │ ├── member-edit.component.html │ │ │ │ │ └── member-edit.component.ts │ │ │ │ └── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── message-create │ │ │ │ │ ├── message-create.component.css │ │ │ │ │ ├── message-create.component.html │ │ │ │ │ └── message-create.component.ts │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── photo-gallery │ │ │ │ ├── photo-gallery.component.css │ │ │ │ ├── photo-gallery.component.html │ │ │ │ └── photo-gallery.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ ├── forms.css │ │ │ └── user.jpg │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── MessagesController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── MessageForCreateDTO.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ ├── UserForRegisterDTO.cs │ └── UserForUpdateDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ ├── LastActiveActionFilter.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ ├── 20200614054721_addUserToUserEntity.Designer.cs │ ├── 20200614054721_addUserToUserEntity.cs │ ├── 20200615100209_updateUserToUserEntity.Designer.cs │ ├── 20200615100209_updateUserToUserEntity.cs │ ├── 20200618200429_AddingEntityMessage.Designer.cs │ ├── 20200618200429_AddingEntityMessage.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Message.cs │ ├── Product.cs │ ├── Role.cs │ ├── User.cs │ ├── UserQueryParams.cs │ └── UserToUser.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 2-Asp.Net Web Api ├── .DS_Store ├── 10-Veritabanından Bilgi Silme │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Bcl.HashCode.dll │ │ │ ├── Microsoft.Data.Sqlite.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ │ ├── SQLitePCLRaw.core.dll │ │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── global.json │ │ │ └── runtimes │ │ │ ├── alpine-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-armel │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-musl-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x86 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── global.json │ │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ServerApp │ │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ │ ├── ServerApp.assets.cache │ │ │ │ ├── ServerApp.csproj.CopyComplete │ │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ │ ├── ServerApp.dll │ │ │ │ ├── ServerApp.pdb │ │ │ │ ├── project.razor.json │ │ │ │ └── staticwebassets │ │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.EntityFrameworkCore.targets │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 11-Data Transfer Object │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ └── ProductDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Bcl.HashCode.dll │ │ │ ├── Microsoft.Data.Sqlite.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ │ ├── SQLitePCLRaw.core.dll │ │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── global.json │ │ │ └── runtimes │ │ │ ├── alpine-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-armel │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-musl-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x86 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── global.json │ │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ServerApp │ │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ │ ├── ServerApp.assets.cache │ │ │ │ ├── ServerApp.csproj.CopyComplete │ │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ │ ├── ServerApp.dll │ │ │ │ ├── ServerApp.pdb │ │ │ │ ├── project.razor.json │ │ │ │ └── staticwebassets │ │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.EntityFrameworkCore.targets │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-ApiController │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── global.json │ │ ├── global.json │ │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── ServerApp │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ ├── ServerApp.assets.cache │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── project.razor.json │ │ │ └── staticwebassets │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json ├── 4-Modelin Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── global.json │ │ ├── global.json │ │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── ServerApp │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ ├── ServerApp.assets.cache │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── project.razor.json │ │ │ └── staticwebassets │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json ├── 5-Postman ile HttpPost Request │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── global.json │ │ ├── global.json │ │ └── obj │ │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── ServerApp │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ ├── ServerApp.assets.cache │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── project.razor.json │ │ │ └── staticwebassets │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json ├── 6-Ef Core │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Bcl.HashCode.dll │ │ │ ├── Microsoft.Data.Sqlite.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ │ ├── SQLitePCLRaw.core.dll │ │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── global.json │ │ │ └── runtimes │ │ │ ├── alpine-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-armel │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-musl-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x86 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── global.json │ │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ServerApp │ │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ │ ├── ServerApp.assets.cache │ │ │ │ ├── ServerApp.csproj.CopyComplete │ │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ │ ├── ServerApp.dll │ │ │ │ ├── ServerApp.pdb │ │ │ │ ├── project.razor.json │ │ │ │ └── staticwebassets │ │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.EntityFrameworkCore.targets │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 7-Veritabanından Bilgi Sorgulama │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Bcl.HashCode.dll │ │ │ ├── Microsoft.Data.Sqlite.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ │ ├── SQLitePCLRaw.core.dll │ │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── global.json │ │ │ └── runtimes │ │ │ ├── alpine-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-armel │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-musl-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x86 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── global.json │ │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ServerApp │ │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ │ ├── ServerApp.assets.cache │ │ │ │ ├── ServerApp.csproj.CopyComplete │ │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ │ ├── ServerApp.dll │ │ │ │ ├── ServerApp.pdb │ │ │ │ ├── project.razor.json │ │ │ │ └── staticwebassets │ │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.EntityFrameworkCore.targets │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 8-Veritabanına Bilgi Ekleme │ └── .DS_Store └── 9-Veritabanına Bilgi Güncelleme │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ └── ServerApp │ ├── .DS_Store │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ ├── ProductsController.cs │ └── WeatherForecastController.cs │ ├── Data │ └── SocialContext.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ └── Product.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.HashCode.dll │ │ ├── Microsoft.Data.Sqlite.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ ├── SQLitePCLRaw.core.dll │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ ├── ServerApp │ │ ├── ServerApp.deps.json │ │ ├── ServerApp.dll │ │ ├── ServerApp.pdb │ │ ├── ServerApp.runtimeconfig.dev.json │ │ ├── ServerApp.runtimeconfig.json │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ ├── System.Text.Json.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── runtimes │ │ ├── alpine-x64 │ │ └── native │ │ │ └── libe_sqlite3.so │ │ ├── linux-arm │ │ └── native │ │ │ └── libe_sqlite3.so │ │ ├── linux-arm64 │ │ └── native │ │ │ └── libe_sqlite3.so │ │ ├── linux-armel │ │ └── native │ │ │ └── libe_sqlite3.so │ │ ├── linux-musl-x64 │ │ └── native │ │ │ └── libe_sqlite3.so │ │ ├── linux-x64 │ │ └── native │ │ │ └── libe_sqlite3.so │ │ ├── linux-x86 │ │ └── native │ │ │ └── libe_sqlite3.so │ │ ├── osx-x64 │ │ └── native │ │ │ └── libe_sqlite3.dylib │ │ ├── win-arm │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── win-arm64 │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── win-x64 │ │ └── native │ │ │ └── e_sqlite3.dll │ │ └── win-x86 │ │ └── native │ │ └── e_sqlite3.dll │ ├── global.json │ ├── obj │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── ServerApp │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ ├── ServerApp.assets.cache │ │ │ ├── ServerApp.csproj.CopyComplete │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── project.razor.json │ │ │ └── staticwebassets │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ └── ServerApp.StaticWebAssets.xml │ ├── ServerApp.csproj.EntityFrameworkCore.targets │ ├── ServerApp.csproj.nuget.cache │ ├── ServerApp.csproj.nuget.dgspec.json │ ├── ServerApp.csproj.nuget.g.props │ ├── ServerApp.csproj.nuget.g.targets │ └── project.assets.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 3-Angular ├── .DS_Store ├── 1-Angular Projesinin İncelenmesi │ └── .DS_Store ├── 10-Listeden Eleman Silme │ ├── .DS_Store │ └── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ └── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── 11-Http Taleplerinin Gönderilmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ └── ProductDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 12-CORS Desteğinin Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ └── ProductDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 13-Http Post Request │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ └── ProductDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 14-Http Put Request │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ └── ProductDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 15-Http Delete Request │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ └── ProductDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ └── Product.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Uygulama Tasarımı │ ├── .DS_Store │ └── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── 3-Dinamik Veri ile Çalışma │ ├── .DS_Store │ └── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── 4-Model ile Çalışma │ ├── .DS_Store │ └── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── 5-Component Ekleme │ ├── .DS_Store │ └── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ └── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── 6-Kayıt Formunun Hazırlanması │ ├── .DS_Store │ └── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ └── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── 7-Service ile Çalışma │ ├── .DS_Store │ └── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ └── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json ├── 8-Seçilen Liste Elemanının Forma Yüklenmesi │ └── .DS_Store └── 9-Seçilen Liste Elemanının Güncellenmesi │ ├── .DS_Store │ └── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── Model.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── navbar │ │ │ ├── navbar.component.css │ │ │ ├── navbar.component.html │ │ │ └── navbar.component.ts │ │ ├── product-details │ │ │ ├── product-details.component.css │ │ │ ├── product-details.component.html │ │ │ └── product-details.component.ts │ │ ├── product-form │ │ │ ├── product-form.component.css │ │ │ ├── product-form.component.html │ │ │ └── product-form.component.ts │ │ ├── product.service.ts │ │ └── products │ │ │ ├── products.component.css │ │ │ ├── products.component.html │ │ │ └── products.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── 4-Asp.Net Identity ├── .DS_Store ├── 1-Kullanıcı Tablolarının Veritabanına Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ └── ProductDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Kullanıcı Bilgisinin Kayıt Edilmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ └── UserDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-Login Metodunun Hazırlanması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db ├── 4-Token Bilgisinin Oluşturulması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db └── 5-Token Bilgisinin Kontrol Edilmesi │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ └── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── ProductsController.cs │ ├── UserController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ProductDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ └── SocialContext.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 5-Angular - Kullanıcı Yönetimi ├── .DS_Store ├── 1-Login Formu │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Login Metodunun Yazılması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-Login Durumuna Göre Navbarın Düzenlenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ └── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 4-Kullanıcı Kayıt Formu │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ └── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal └── 5-Validation Kurallarının Eklenmesi │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _services │ │ │ │ └── auth.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ └── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── ProductsController.cs │ ├── UserController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ProductDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ └── SocialContext.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 6-Routing ├── .DS_Store ├── 1-Routing Şeması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── route.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Linklerin Düzenlenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-Auth Guards │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal └── 4-Token Bilgisinin Kullanılması │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _services │ │ │ │ └── auth.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── member-list │ │ │ │ ├── member-list.component.css │ │ │ │ ├── member-list.component.html │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── ProductsController.cs │ ├── UserController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ProductDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ └── SocialContext.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 7-Hata Yönetimi ├── .DS_Store ├── 1-Hata Denetiminin Yapılması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 2-Global Exception Handling │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── bin │ │ └── Debug │ │ │ └── netcoreapp3.1 │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ │ │ ├── Microsoft.AspNetCore.JsonPatch.dll │ │ │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.Bcl.HashCode.dll │ │ │ ├── Microsoft.Data.Sqlite.dll │ │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Newtonsoft.Json.Bson.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ │ ├── SQLitePCLRaw.core.dll │ │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ │ ├── ServerApp │ │ │ ├── ServerApp.deps.json │ │ │ ├── ServerApp.dll │ │ │ ├── ServerApp.pdb │ │ │ ├── ServerApp.runtimeconfig.dev.json │ │ │ ├── ServerApp.runtimeconfig.json │ │ │ ├── System.Collections.Immutable.dll │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── global.json │ │ │ └── runtimes │ │ │ ├── alpine-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-armel │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-musl-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── linux-x86 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── e_sqlite3.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── e_sqlite3.dll │ │ ├── global.json │ │ ├── obj │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── ServerApp │ │ │ │ ├── ServerApp.AssemblyInfo.cs │ │ │ │ ├── ServerApp.AssemblyInfoInputs.cache │ │ │ │ ├── ServerApp.MvcApplicationPartsAssemblyInfo.cache │ │ │ │ ├── ServerApp.RazorTargetAssemblyInfo.cache │ │ │ │ ├── ServerApp.assets.cache │ │ │ │ ├── ServerApp.csproj.CopyComplete │ │ │ │ ├── ServerApp.csproj.FileListAbsolute.txt │ │ │ │ ├── ServerApp.csprojAssemblyReference.cache │ │ │ │ ├── ServerApp.dll │ │ │ │ ├── ServerApp.pdb │ │ │ │ ├── project.razor.json │ │ │ │ └── staticwebassets │ │ │ │ ├── ServerApp.StaticWebAssets.Manifest.cache │ │ │ │ └── ServerApp.StaticWebAssets.xml │ │ ├── ServerApp.csproj.EntityFrameworkCore.targets │ │ ├── ServerApp.csproj.nuget.cache │ │ ├── ServerApp.csproj.nuget.dgspec.json │ │ ├── ServerApp.csproj.nuget.g.props │ │ ├── ServerApp.csproj.nuget.g.targets │ │ └── project.assets.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-ModelState │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ └── auth.service.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 4-Intercapter │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── error.intercaptor.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ └── SocialContext.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal └── 5-Alertify │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README 12.09.46.md │ ├── angular 12.09.46.json │ ├── browserslist 12.09.46 │ ├── e2e 12.09.46 │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf 12.09.46.js │ ├── package 12.09.46.json │ ├── package-lock 12.09.46.json │ ├── src 12.09.46 │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _services │ │ │ │ ├── auth.service.ts │ │ │ │ └── error.intercaptor.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── member-list │ │ │ │ ├── member-list.component.css │ │ │ │ ├── member-list.component.html │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig 12.09.46.json │ ├── tsconfig.app 12.09.46.json │ ├── tsconfig.spec 12.09.46.json │ └── tslint 12.09.46.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── ProductsController.cs │ ├── UserController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ProductDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ └── SocialContext.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 8-Web Api Yapısının İyileştirilmesi ├── .DS_Store ├── 1-Veri Tabanının Güncellenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── error.intercaptor.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ ├── SocialContext.cs │ │ └── users.json │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ └── social.db ├── 2-Test Bilgilerinin Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── error.intercaptor.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ └── users.json │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 3-Repository Sınıfının Eklenmesi │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── error.intercaptor.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── ProductsController.cs │ │ ├── UserController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 4-UsersController │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── error.intercaptor.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 5-Dto Sınıflarının Oluşturulması │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── error.intercaptor.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal ├── 6-AutoMapper Kurulumu │ ├── .DS_Store │ └── SocialApp │ │ ├── .DS_Store │ │ ├── ClientApp │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e │ │ │ ├── protractor.conf.js │ │ │ ├── src │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.json │ │ ├── karma.conf.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── Model.ts │ │ │ │ ├── _guards │ │ │ │ │ └── auth-guard.ts │ │ │ │ ├── _services │ │ │ │ │ ├── alertify.service.ts │ │ │ │ │ ├── auth.service.ts │ │ │ │ │ └── error.intercaptor.ts │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── friend-list │ │ │ │ │ ├── friend-list.component.css │ │ │ │ │ ├── friend-list.component.html │ │ │ │ │ └── friend-list.component.ts │ │ │ │ ├── home │ │ │ │ │ ├── home.component.css │ │ │ │ │ ├── home.component.html │ │ │ │ │ └── home.component.ts │ │ │ │ ├── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ │ ├── messages │ │ │ │ │ ├── messages.component.css │ │ │ │ │ ├── messages.component.html │ │ │ │ │ └── messages.component.ts │ │ │ │ ├── navbar │ │ │ │ │ ├── navbar.component.css │ │ │ │ │ ├── navbar.component.html │ │ │ │ │ └── navbar.component.ts │ │ │ │ ├── notfound │ │ │ │ │ ├── notfound.component.css │ │ │ │ │ ├── notfound.component.html │ │ │ │ │ └── notfound.component.ts │ │ │ │ ├── product-details │ │ │ │ │ ├── product-details.component.css │ │ │ │ │ ├── product-details.component.html │ │ │ │ │ └── product-details.component.ts │ │ │ │ ├── product-form │ │ │ │ │ ├── product-form.component.css │ │ │ │ │ ├── product-form.component.html │ │ │ │ │ └── product-form.component.ts │ │ │ │ ├── product.service.ts │ │ │ │ ├── products │ │ │ │ │ ├── products.component.css │ │ │ │ │ ├── products.component.html │ │ │ │ │ └── products.component.ts │ │ │ │ ├── register │ │ │ │ │ ├── register.component.css │ │ │ │ │ ├── register.component.html │ │ │ │ │ └── register.component.ts │ │ │ │ └── routes.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── forms.css │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ │ └── ServerApp │ │ ├── .DS_Store │ │ ├── Controllers │ │ ├── AuthController.cs │ │ ├── ProductsController.cs │ │ ├── UsersController.cs │ │ └── WeatherForecastController.cs │ │ ├── DTO │ │ ├── ProductDTO.cs │ │ ├── UserForDetailsDTO.cs │ │ ├── UserForListDTO.cs │ │ ├── UserForLoginDTO.cs │ │ └── UserForRegisterDTO.cs │ │ ├── Data │ │ ├── ISocialRepository.cs │ │ ├── SeedDatabase.cs │ │ ├── SocialContext.cs │ │ ├── SocialRepository.cs │ │ └── users.json │ │ ├── Helpers │ │ └── MapperProfiles.cs │ │ ├── Migrations │ │ ├── 20200517132014_InitialCreate.Designer.cs │ │ ├── 20200517132014_InitialCreate.cs │ │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ │ ├── 20200519093349_AddColumnSecretProduct.cs │ │ ├── 20200526194912_AddIdentityTables.Designer.cs │ │ ├── 20200526194912_AddIdentityTables.cs │ │ ├── 20200605084235_AddImageEntity.Designer.cs │ │ ├── 20200605084235_AddImageEntity.cs │ │ └── SocialContextModelSnapshot.cs │ │ ├── Models │ │ ├── ErrorDetails.cs │ │ ├── Image.cs │ │ ├── Product.cs │ │ ├── Role.cs │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ServerApp.csproj │ │ ├── Startup.cs │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── global.json │ │ ├── social.db │ │ ├── social.db-shm │ │ └── social.db-wal └── 7-AutoMapper Ayarları │ ├── .DS_Store │ └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ └── error.intercaptor.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── member-list │ │ │ │ ├── member-list.component.css │ │ │ │ ├── member-list.component.html │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal └── 9-Angular Kullanıcı Sayfalarının Hazırlanması ├── .DS_Store ├── 1-Angular Model Sınıflarının Hazırlanması ├── .DS_Store └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ └── error.intercaptor.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── member-list │ │ │ │ ├── member-list.component.css │ │ │ │ ├── member-list.component.html │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 2-Kullanıcı Bilgileri İçin Servisin Eklenmesi ├── .DS_Store └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── member-list │ │ │ │ ├── member-list.component.css │ │ │ │ ├── member-list.component.html │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 3-Kullanıcı Profil Listesinin Oluşturulması ├── .DS_Store └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── member-list │ │ │ │ ├── member-list.component.css │ │ │ │ ├── member-list.component.html │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 4-Kullanıcı Detay Bilgisinin Alınması ├── .DS_Store └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── members │ │ │ │ ├── member-details │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ └── member-details.component.ts │ │ │ │ └── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal ├── 5-Profil Sayfasının Hazırlanması ├── .DS_Store └── SocialApp │ ├── .DS_Store │ ├── ClientApp │ ├── .DS_Store │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── e2e │ │ ├── protractor.conf.js │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── Model.ts │ │ │ ├── _guards │ │ │ │ └── auth-guard.ts │ │ │ ├── _models │ │ │ │ ├── image.ts │ │ │ │ └── user.ts │ │ │ ├── _services │ │ │ │ ├── alertify.service.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── error.intercaptor.ts │ │ │ │ └── user.service.ts │ │ │ ├── app-routing.module.ts │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── friend-list │ │ │ │ ├── friend-list.component.css │ │ │ │ ├── friend-list.component.html │ │ │ │ └── friend-list.component.ts │ │ │ ├── home │ │ │ │ ├── home.component.css │ │ │ │ ├── home.component.html │ │ │ │ └── home.component.ts │ │ │ ├── members │ │ │ │ ├── member-details │ │ │ │ │ ├── member-details.component.css │ │ │ │ │ ├── member-details.component.html │ │ │ │ │ └── member-details.component.ts │ │ │ │ └── member-list │ │ │ │ │ ├── member-list.component.css │ │ │ │ │ ├── member-list.component.html │ │ │ │ │ └── member-list.component.ts │ │ │ ├── messages │ │ │ │ ├── messages.component.css │ │ │ │ ├── messages.component.html │ │ │ │ └── messages.component.ts │ │ │ ├── navbar │ │ │ │ ├── navbar.component.css │ │ │ │ ├── navbar.component.html │ │ │ │ └── navbar.component.ts │ │ │ ├── notfound │ │ │ │ ├── notfound.component.css │ │ │ │ ├── notfound.component.html │ │ │ │ └── notfound.component.ts │ │ │ ├── product-details │ │ │ │ ├── product-details.component.css │ │ │ │ ├── product-details.component.html │ │ │ │ └── product-details.component.ts │ │ │ ├── product-form │ │ │ │ ├── product-form.component.css │ │ │ │ ├── product-form.component.html │ │ │ │ └── product-form.component.ts │ │ │ ├── product.service.ts │ │ │ ├── products │ │ │ │ ├── products.component.css │ │ │ │ ├── products.component.html │ │ │ │ └── products.component.ts │ │ │ ├── register │ │ │ │ ├── register.component.css │ │ │ │ ├── register.component.html │ │ │ │ └── register.component.ts │ │ │ └── routes.ts │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── forms.css │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json │ └── ServerApp │ ├── .DS_Store │ ├── Controllers │ ├── AuthController.cs │ ├── ProductsController.cs │ ├── UsersController.cs │ └── WeatherForecastController.cs │ ├── DTO │ ├── ImagesForDetails.cs │ ├── ProductDTO.cs │ ├── UserForDetailsDTO.cs │ ├── UserForListDTO.cs │ ├── UserForLoginDTO.cs │ └── UserForRegisterDTO.cs │ ├── Data │ ├── ISocialRepository.cs │ ├── SeedDatabase.cs │ ├── SocialContext.cs │ ├── SocialRepository.cs │ └── users.json │ ├── Helpers │ ├── ExtensionMethods.cs │ └── MapperProfiles.cs │ ├── Migrations │ ├── 20200517132014_InitialCreate.Designer.cs │ ├── 20200517132014_InitialCreate.cs │ ├── 20200519093349_AddColumnSecretProduct.Designer.cs │ ├── 20200519093349_AddColumnSecretProduct.cs │ ├── 20200526194912_AddIdentityTables.Designer.cs │ ├── 20200526194912_AddIdentityTables.cs │ ├── 20200605084235_AddImageEntity.Designer.cs │ ├── 20200605084235_AddImageEntity.cs │ └── SocialContextModelSnapshot.cs │ ├── Models │ ├── ErrorDetails.cs │ ├── Image.cs │ ├── Product.cs │ ├── Role.cs │ └── User.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── ServerApp.csproj │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── global.json │ ├── social.db │ ├── social.db-shm │ └── social.db-wal └── 6-Resim Galerisi ├── .DS_Store └── SocialApp ├── .DS_Store ├── ClientApp ├── .DS_Store ├── README.md ├── angular.json ├── browserslist ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app │ │ ├── Model.ts │ │ ├── _guards │ │ │ └── auth-guard.ts │ │ ├── _models │ │ │ ├── image.ts │ │ │ └── user.ts │ │ ├── _services │ │ │ ├── alertify.service.ts │ │ │ ├── auth.service.ts │ │ │ ├── error.intercaptor.ts │ │ │ └── user.service.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── friend-list │ │ │ ├── friend-list.component.css │ │ │ ├── friend-list.component.html │ │ │ └── friend-list.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── members │ │ │ ├── member-details │ │ │ │ ├── member-details.component.css │ │ │ │ ├── member-details.component.html │ │ │ │ └── member-details.component.ts │ │ │ └── member-list │ │ │ │ ├── member-list.component.css │ │ │ │ ├── member-list.component.html │ │ │ │ └── member-list.component.ts │ │ ├── messages │ │ │ ├── messages.component.css │ │ │ ├── messages.component.html │ │ │ └── messages.component.ts │ │ ├── navbar │ │ │ ├── navbar.component.css │ │ │ ├── navbar.component.html │ │ │ └── navbar.component.ts │ │ ├── notfound │ │ │ ├── notfound.component.css │ │ │ ├── notfound.component.html │ │ │ └── notfound.component.ts │ │ ├── photo-gallery │ │ │ ├── photo-gallery.component.css │ │ │ ├── photo-gallery.component.html │ │ │ └── photo-gallery.component.ts │ │ ├── product-details │ │ │ ├── product-details.component.css │ │ │ ├── product-details.component.html │ │ │ └── product-details.component.ts │ │ ├── product-form │ │ │ ├── product-form.component.css │ │ │ ├── product-form.component.html │ │ │ └── product-form.component.ts │ │ ├── product.service.ts │ │ ├── products │ │ │ ├── products.component.css │ │ │ ├── products.component.html │ │ │ └── products.component.ts │ │ ├── register │ │ │ ├── register.component.css │ │ │ ├── register.component.html │ │ │ └── register.component.ts │ │ └── routes.ts │ ├── assets │ │ ├── .gitkeep │ │ └── forms.css │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json └── ServerApp ├── .DS_Store ├── Controllers ├── AuthController.cs ├── ProductsController.cs ├── UsersController.cs └── WeatherForecastController.cs ├── DTO ├── ImagesForDetails.cs ├── ProductDTO.cs ├── UserForDetailsDTO.cs ├── UserForListDTO.cs ├── UserForLoginDTO.cs └── UserForRegisterDTO.cs ├── Data ├── ISocialRepository.cs ├── SeedDatabase.cs ├── SocialContext.cs ├── SocialRepository.cs └── users.json ├── Helpers ├── ExtensionMethods.cs └── MapperProfiles.cs ├── Migrations ├── 20200517132014_InitialCreate.Designer.cs ├── 20200517132014_InitialCreate.cs ├── 20200519093349_AddColumnSecretProduct.Designer.cs ├── 20200519093349_AddColumnSecretProduct.cs ├── 20200526194912_AddIdentityTables.Designer.cs ├── 20200526194912_AddIdentityTables.cs ├── 20200605084235_AddImageEntity.Designer.cs ├── 20200605084235_AddImageEntity.cs └── SocialContextModelSnapshot.cs ├── Models ├── ErrorDetails.cs ├── Image.cs ├── Product.cs ├── Role.cs └── User.cs ├── Program.cs ├── Properties └── launchSettings.json ├── ServerApp.csproj ├── Startup.cs ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json ├── global.json ├── social.db ├── social.db-shm └── social.db-wal /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.ignoreLimitWarning": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/README.md -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |
messages works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/1-Güncelleme Servisinin Yazılması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/2-Güncelleme Formunun Hazırlanması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/3-Route Resolver /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/4-Güncellemenin Yapılması/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/5-Kullanıcı Kayıt Formunun Detaylandırılması/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/6-Tarih Bilgilerinin Düzenlenmesi/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/10-Profil Bilgilerinin Güncellenmesi/7-LastActive Bilgisinin Güncellenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/11-Kullanıcı Takip İşlemleri/.DS_Store -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/1-Veri Tabanı Tablosu/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/2-Kullanıcı Takip Servisinin Yazılması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/3-Takip Et Butonu/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/4-Takipçi Bilgileri İçin Servis Yazımı/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/5-Takipçilerin Listelenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/11-Kullanıcı Takip İşlemleri/6-Loading Ekranı /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/12-Filtreleme/.DS_Store -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/1-Filtreleme Kriterlerinin Eklenmesi/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/2-Filtreleme Formunun Eklenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/3-Servise Kayıt Sıralama Özelliğinin Eklenmesi/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/12-Filtreleme/4-Seçilen Kritere Göre Sıralamanın Yapılması/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/13-Mesajlaşma/.DS_Store -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/1-Mesajlaşma Veri Tabanı Tablolarının Oluşturulması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/2-Servis ile Mesaj Kaydının Eklenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/members/member-details/member-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/members/member-edit/member-edit.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/messages/message-create/message-create.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/13-Mesajlaşma/3-Mesajın Gönderilmesi /SocialApp/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/2-Asp.Net Web Api/.DS_Store -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/10-Veritabanından Bilgi Silme /SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/10-Veritabanından Bilgi Silme /SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/10-Veritabanından Bilgi Silme /SocialApp/ServerApp/obj/Debug/netcoreapp3.1/staticwebassets/ServerApp.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/11-Data Transfer Object/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/11-Data Transfer Object/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/11-Data Transfer Object/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/staticwebassets/ServerApp.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/3-ApiController/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0e3cfad139bcee20e91c0468d7aeb4e59f10e323 2 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/3-ApiController/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/3-ApiController/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/staticwebassets/ServerApp.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/2-Asp.Net Web Api/3-ApiController/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/staticwebassets/ServerApp.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/home/home.component.html: -------------------------------------------------------------------------------- 1 |home works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/6-Routing/1-Routing Şeması/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/2-Linklerin Düzenlenmesi /SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/6-Routing/3-Auth Guards/.DS_Store -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/6-Routing/3-Auth Guards/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/6-Routing/4-Token Bilgisinin Kullanılması/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/7-Hata Yönetimi/.DS_Store -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/1-Hata Denetiminin Yapılması /SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/ServerApp.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ServerApp/obj/Debug/netcoreapp3.1/staticwebassets/ServerApp.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/2-Global Exception Handling/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/3-ModelState/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ClientApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/4-Intercapter/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sadikturan/asp-net-core-web-api-angular/HEAD/src/7-Hata Yönetimi/5-Alertify/.DS_Store -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ClientApp/src 12.09.46/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/7-Hata Yönetimi/5-Alertify/SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/1-Veri Tabanının Güncellenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/2-Test Bilgilerinin Eklenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/3-Repository Sınıfının Eklenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/4-UsersController /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/5-Dto Sınıflarının Oluşturulması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/6-AutoMapper Kurulumu/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/friend-list/friend-list.component.html: -------------------------------------------------------------------------------- 1 |friend-list works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/member-list/member-list.component.html: -------------------------------------------------------------------------------- 1 |member-list works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/8-Web Api Yapısının İyileştirilmesi/7-AutoMapper Ayarları/SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/1-Angular Model Sınıflarının Hazırlanması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/2-Kullanıcı Bilgileri İçin Servisin Eklenmesi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/3-Kullanıcı Profil Listesinin Oluşturulması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/4-Kullanıcı Detay Bilgisinin Alınması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/5-Profil Sayfasının Hazırlanması /SocialApp/ServerApp/social.db-wal: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/friend-list/friend-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/members/member-list/member-list.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/messages/messages.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/messages/messages.component.html: -------------------------------------------------------------------------------- 1 |messages works!
2 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/navbar/navbar.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/notfound/notfound.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/notfound/notfound.component.html: -------------------------------------------------------------------------------- 1 |notfound works!
2 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/photo-gallery/photo-gallery.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/product-details/product-details.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/product-form/product-form.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/products/products.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/app/register/register.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/9-Angular Kullanıcı Sayfalarının Hazırlanması/6-Resim Galerisi /SocialApp/ClientApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------