├── Angular ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── appStructure.txt ├── 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.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── bank-account │ │ │ ├── bank-account.component.css │ │ │ ├── bank-account.component.html │ │ │ └── bank-account.component.ts │ │ └── shared │ │ │ ├── bank-account.service.ts │ │ │ └── bank.service.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 ├── README.md └── WebAPI ├── .idea └── .idea.WebAPI │ └── .idea │ ├── .gitignore │ ├── encodings.xml │ ├── indexLayout.xml │ └── vcs.xml ├── .vs ├── WebAPI │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── config │ │ └── applicationhost.config │ ├── v15 │ │ ├── .suo │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ └── v17 │ │ └── .suo └── config │ └── applicationhost.config ├── WebAPI.sln └── WebAPI ├── Controllers ├── BankAccountController.cs ├── BankController.cs └── ValuesController.cs ├── Migrations ├── 20190826070102_InitialDB.Designer.cs ├── 20190826070102_InitialDB.cs └── APIDBContextModelSnapshot.cs ├── Models ├── APIDBContext.cs ├── Bank.cs └── BankAccount.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── WebAPI.csproj ├── WebAPI.csproj.user ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ ├── netcoreapp2.2 │ ├── WebAPI.deps.json │ ├── WebAPI.dll │ ├── WebAPI.pdb │ ├── WebAPI.runtimeconfig.dev.json │ ├── WebAPI.runtimeconfig.json │ ├── appsettings.Development.json │ └── appsettings.json │ └── netcoreapp3.1 │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Bcl.HashCode.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.Caching.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.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ ├── Newtonsoft.Json.dll │ ├── NuGet.Frameworks.dll │ ├── System.Collections.Immutable.dll │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── WebAPI.deps.json │ ├── WebAPI.dll │ ├── WebAPI.exe │ ├── WebAPI.pdb │ ├── WebAPI.runtimeconfig.dev.json │ ├── WebAPI.runtimeconfig.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── dotnet-aspnet-codegenerator-design.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ └── System.Runtime.Caching.dll │ │ │ └── netcoreapp2.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm64 │ │ └── native │ │ │ └── sni.dll │ ├── win-x64 │ │ └── native │ │ │ └── sni.dll │ ├── win-x86 │ │ └── native │ │ │ └── sni.dll │ └── win │ │ └── lib │ │ ├── netcoreapp2.0 │ │ └── System.Runtime.Caching.dll │ │ ├── netcoreapp2.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ └── System.Security.Cryptography.ProtectedData.dll │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll └── obj ├── Debug ├── netcoreapp2.2 │ ├── .NETCoreApp,Version=v2.2.AssemblyAttributes.cs │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── WebAPI.AssemblyInfo.cs │ ├── WebAPI.AssemblyInfoInputs.cache │ ├── WebAPI.GeneratedMSBuildEditorConfig.editorconfig │ ├── WebAPI.RazorAssemblyInfo.cache │ ├── WebAPI.RazorAssemblyInfo.cs │ ├── WebAPI.RazorTargetAssemblyInfo.cache │ ├── WebAPI.assets.cache │ ├── WebAPI.csproj.AssemblyReference.cache │ ├── WebAPI.csproj.CoreCompileInputs.cache │ ├── WebAPI.csproj.FileListAbsolute.txt │ ├── WebAPI.csprojAssemblyReference.cache │ ├── WebAPI.dll │ ├── WebAPI.genruntimeconfig.cache │ └── WebAPI.pdb └── netcoreapp3.1 │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ ├── WebAPI.AssemblyInfo.cs │ ├── WebAPI.AssemblyInfoInputs.cache │ ├── WebAPI.GeneratedMSBuildEditorConfig.editorconfig │ ├── WebAPI.MvcApplicationPartsAssemblyInfo.cache │ ├── WebAPI.RazorTargetAssemblyInfo.cache │ ├── WebAPI.assets.cache │ ├── WebAPI.csproj.AssemblyReference.cache │ ├── WebAPI.csproj.BuildWithSkipAnalyzers │ ├── WebAPI.csproj.CopyComplete │ ├── WebAPI.csproj.CoreCompileInputs.cache │ ├── WebAPI.csproj.FileListAbsolute.txt │ ├── WebAPI.dll │ ├── WebAPI.genruntimeconfig.cache │ ├── WebAPI.pdb │ └── apphost.exe ├── WebAPI.csproj.nuget.dgspec.json ├── WebAPI.csproj.nuget.g.props ├── WebAPI.csproj.nuget.g.targets ├── project.assets.json ├── project.nuget.cache ├── project.packagespec.json └── rider.project.restore.info /Angular/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /Angular/.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | /out-tsc 7 | # Only exists if Bazel was run 8 | /bazel-out 9 | 10 | # dependencies 11 | /node_modules 12 | 13 | # profiling files 14 | chrome-profiler-events.json 15 | speed-measure-plugin.json 16 | 17 | # IDEs and editors 18 | /.idea 19 | .project 20 | .classpath 21 | .c9/ 22 | *.launch 23 | .settings/ 24 | *.sublime-workspace 25 | 26 | # IDE - VSCode 27 | .vscode/* 28 | !.vscode/settings.json 29 | !.vscode/tasks.json 30 | !.vscode/launch.json 31 | !.vscode/extensions.json 32 | .history/* 33 | 34 | # misc 35 | /.sass-cache 36 | /connect.lock 37 | /coverage 38 | /libpeerconnection.log 39 | npm-debug.log 40 | yarn-error.log 41 | testem.log 42 | /typings 43 | 44 | # System Files 45 | .DS_Store 46 | Thumbs.db 47 | -------------------------------------------------------------------------------- /Angular/README.md: -------------------------------------------------------------------------------- 1 | # AngularInlineTableCRUD 2 | 3 | This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.0.3. 4 | 5 | ## Development server 6 | 7 | Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files. 8 | 9 | ## Code scaffolding 10 | 11 | Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`. 12 | 13 | ## Build 14 | 15 | Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build. 16 | 17 | ## Running unit tests 18 | 19 | Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io). 20 | 21 | ## Running end-to-end tests 22 | 23 | Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/). 24 | 25 | ## Further help 26 | 27 | To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md). 28 | -------------------------------------------------------------------------------- /Angular/angular.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json", 3 | "version": 1, 4 | "newProjectRoot": "projects", 5 | "projects": { 6 | "AngularInlineTableCRUD": { 7 | "projectType": "application", 8 | "schematics": { 9 | "@schematics/angular:class": { 10 | "skipTests": true 11 | }, 12 | "@schematics/angular:component": { 13 | "skipTests": true 14 | }, 15 | "@schematics/angular:directive": { 16 | "skipTests": true 17 | }, 18 | "@schematics/angular:guard": { 19 | "skipTests": true 20 | }, 21 | "@schematics/angular:module": { 22 | "skipTests": true 23 | }, 24 | "@schematics/angular:pipe": { 25 | "skipTests": true 26 | }, 27 | "@schematics/angular:service": { 28 | "skipTests": true 29 | } 30 | }, 31 | "root": "", 32 | "sourceRoot": "src", 33 | "prefix": "app", 34 | "architect": { 35 | "build": { 36 | "builder": "@angular-devkit/build-angular:browser", 37 | "options": { 38 | "outputPath": "dist/AngularInlineTableCRUD", 39 | "index": "src/index.html", 40 | "main": "src/main.ts", 41 | "polyfills": "src/polyfills.ts", 42 | "tsConfig": "tsconfig.app.json", 43 | "aot": false, 44 | "assets": [ 45 | "src/favicon.ico", 46 | "src/assets" 47 | ], 48 | "styles": [ 49 | "src/styles.css", 50 | "node_modules/@fortawesome/fontawesome-free/css/all.min.css" 51 | ], 52 | "scripts": [] 53 | }, 54 | "configurations": { 55 | "production": { 56 | "fileReplacements": [ 57 | { 58 | "replace": "src/environments/environment.ts", 59 | "with": "src/environments/environment.prod.ts" 60 | } 61 | ], 62 | "optimization": true, 63 | "outputHashing": "all", 64 | "sourceMap": false, 65 | "extractCss": true, 66 | "namedChunks": false, 67 | "aot": true, 68 | "extractLicenses": true, 69 | "vendorChunk": false, 70 | "buildOptimizer": true, 71 | "budgets": [ 72 | { 73 | "type": "initial", 74 | "maximumWarning": "2mb", 75 | "maximumError": "5mb" 76 | } 77 | ] 78 | } 79 | } 80 | }, 81 | "serve": { 82 | "builder": "@angular-devkit/build-angular:dev-server", 83 | "options": { 84 | "browserTarget": "AngularInlineTableCRUD:build" 85 | }, 86 | "configurations": { 87 | "production": { 88 | "browserTarget": "AngularInlineTableCRUD:build:production" 89 | } 90 | } 91 | }, 92 | "extract-i18n": { 93 | "builder": "@angular-devkit/build-angular:extract-i18n", 94 | "options": { 95 | "browserTarget": "AngularInlineTableCRUD:build" 96 | } 97 | }, 98 | "test": { 99 | "builder": "@angular-devkit/build-angular:karma", 100 | "options": { 101 | "main": "src/test.ts", 102 | "polyfills": "src/polyfills.ts", 103 | "tsConfig": "tsconfig.spec.json", 104 | "karmaConfig": "karma.conf.js", 105 | "assets": [ 106 | "src/favicon.ico", 107 | "src/assets" 108 | ], 109 | "styles": [ 110 | "src/styles.css" 111 | ], 112 | "scripts": [] 113 | } 114 | }, 115 | "lint": { 116 | "builder": "@angular-devkit/build-angular:tslint", 117 | "options": { 118 | "tsConfig": [ 119 | "tsconfig.app.json", 120 | "tsconfig.spec.json", 121 | "e2e/tsconfig.json" 122 | ], 123 | "exclude": [ 124 | "**/node_modules/**" 125 | ] 126 | } 127 | }, 128 | "e2e": { 129 | "builder": "@angular-devkit/build-angular:protractor", 130 | "options": { 131 | "protractorConfig": "e2e/protractor.conf.js", 132 | "devServerTarget": "AngularInlineTableCRUD:serve" 133 | }, 134 | "configurations": { 135 | "production": { 136 | "devServerTarget": "AngularInlineTableCRUD:serve:production" 137 | } 138 | } 139 | } 140 | } 141 | }}, 142 | "defaultProject": "AngularInlineTableCRUD" 143 | } -------------------------------------------------------------------------------- /Angular/appStructure.txt: -------------------------------------------------------------------------------- 1 | ● src 2 | +---● app 3 | | | 4 | | +--● bankAccount 5 | | | |--bank-account.component.ts|.html 6 | | | 7 | | +--● shared 8 | | | |--bank.service.ts 9 | | | |--bank-account.service.ts 10 | | | 11 | | |--app.module.ts 12 | | 13 | |--index.html (cdn path for bootstrap) -------------------------------------------------------------------------------- /Angular/browserslist: -------------------------------------------------------------------------------- 1 | # This file is used by the build system to adjust CSS and JS output to support the specified browsers below. 2 | # For additional information regarding the format and rule options, please see: 3 | # https://github.com/browserslist/browserslist#queries 4 | 5 | # You can see what browsers were selected by your queries by running: 6 | # npx browserslist 7 | 8 | > 0.5% 9 | last 2 versions 10 | Firefox ESR 11 | not dead 12 | not IE 9-11 # For IE 9-11 support, remove 'not'. -------------------------------------------------------------------------------- /Angular/e2e/protractor.conf.js: -------------------------------------------------------------------------------- 1 | // @ts-check 2 | // Protractor configuration file, see link for more information 3 | // https://github.com/angular/protractor/blob/master/lib/config.ts 4 | 5 | const { SpecReporter } = require('jasmine-spec-reporter'); 6 | 7 | /** 8 | * @type { import("protractor").Config } 9 | */ 10 | exports.config = { 11 | allScriptsTimeout: 11000, 12 | specs: [ 13 | './src/**/*.e2e-spec.ts' 14 | ], 15 | capabilities: { 16 | 'browserName': 'chrome' 17 | }, 18 | directConnect: true, 19 | baseUrl: 'http://localhost:4200/', 20 | framework: 'jasmine', 21 | jasmineNodeOpts: { 22 | showColors: true, 23 | defaultTimeoutInterval: 30000, 24 | print: function() {} 25 | }, 26 | onPrepare() { 27 | require('ts-node').register({ 28 | project: require('path').join(__dirname, './tsconfig.json') 29 | }); 30 | jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } })); 31 | } 32 | }; -------------------------------------------------------------------------------- /Angular/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- 1 | import { AppPage } from './app.po'; 2 | import { browser, logging } from 'protractor'; 3 | 4 | describe('workspace-project App', () => { 5 | let page: AppPage; 6 | 7 | beforeEach(() => { 8 | page = new AppPage(); 9 | }); 10 | 11 | it('should display welcome message', () => { 12 | page.navigateTo(); 13 | expect(page.getTitleText()).toEqual('Welcome to AngularInlineTableCRUD!'); 14 | }); 15 | 16 | afterEach(async () => { 17 | // Assert that there are no errors emitted from the browser 18 | const logs = await browser.manage().logs().get(logging.Type.BROWSER); 19 | expect(logs).not.toContain(jasmine.objectContaining({ 20 | level: logging.Level.SEVERE, 21 | } as logging.Entry)); 22 | }); 23 | }); 24 | -------------------------------------------------------------------------------- /Angular/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo() { 5 | return browser.get(browser.baseUrl) as Promise; 6 | } 7 | 8 | getTitleText() { 9 | return element(by.css('app-root h1')).getText() as Promise; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Angular/e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Angular/karma.conf.js: -------------------------------------------------------------------------------- 1 | // Karma configuration file, see link for more information 2 | // https://karma-runner.github.io/1.0/config/configuration-file.html 3 | 4 | module.exports = function (config) { 5 | config.set({ 6 | basePath: '', 7 | frameworks: ['jasmine', '@angular-devkit/build-angular'], 8 | plugins: [ 9 | require('karma-jasmine'), 10 | require('karma-chrome-launcher'), 11 | require('karma-jasmine-html-reporter'), 12 | require('karma-coverage-istanbul-reporter'), 13 | require('@angular-devkit/build-angular/plugins/karma') 14 | ], 15 | client: { 16 | clearContext: false // leave Jasmine Spec Runner output visible in browser 17 | }, 18 | coverageIstanbulReporter: { 19 | dir: require('path').join(__dirname, './coverage/AngularInlineTableCRUD'), 20 | reports: ['html', 'lcovonly', 'text-summary'], 21 | fixWebpackSourcePaths: true 22 | }, 23 | reporters: ['progress', 'kjhtml'], 24 | port: 9876, 25 | colors: true, 26 | logLevel: config.LOG_INFO, 27 | autoWatch: true, 28 | browsers: ['Chrome'], 29 | singleRun: false, 30 | restartOnFileChange: true 31 | }); 32 | }; 33 | -------------------------------------------------------------------------------- /Angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-inline-table-crud", 3 | "version": "0.0.0", 4 | "scripts": { 5 | "ng": "ng", 6 | "start": "ng serve", 7 | "build": "ng build", 8 | "test": "ng test", 9 | "lint": "ng lint", 10 | "e2e": "ng e2e" 11 | }, 12 | "private": true, 13 | "dependencies": { 14 | "@angular/animations": "~8.0.1", 15 | "@angular/common": "~8.0.1", 16 | "@angular/compiler": "~8.0.1", 17 | "@angular/core": "~8.0.1", 18 | "@angular/forms": "~8.0.1", 19 | "@angular/platform-browser": "~8.0.1", 20 | "@angular/platform-browser-dynamic": "~8.0.1", 21 | "@angular/router": "~8.0.1", 22 | "@fortawesome/fontawesome-free": "^5.10.2", 23 | "rxjs": "~6.4.0", 24 | "tslib": "^1.9.0", 25 | "zone.js": "~0.9.1" 26 | }, 27 | "devDependencies": { 28 | "@angular-devkit/build-angular": "~0.800.0", 29 | "@angular/cli": "~8.0.3", 30 | "@angular/compiler-cli": "~8.0.1", 31 | "@angular/language-service": "~8.0.1", 32 | "@types/node": "~8.9.4", 33 | "@types/jasmine": "~3.3.8", 34 | "@types/jasminewd2": "~2.0.3", 35 | "codelyzer": "^5.0.0", 36 | "jasmine-core": "~3.4.0", 37 | "jasmine-spec-reporter": "~4.2.1", 38 | "karma": "~4.1.0", 39 | "karma-chrome-launcher": "~2.2.0", 40 | "karma-coverage-istanbul-reporter": "~2.0.1", 41 | "karma-jasmine": "~2.0.1", 42 | "karma-jasmine-html-reporter": "^1.4.0", 43 | "protractor": "~5.4.0", 44 | "ts-node": "~7.0.0", 45 | "tslint": "~5.15.0", 46 | "typescript": "~3.4.3" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /Angular/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/Angular/src/app/app.component.css -------------------------------------------------------------------------------- /Angular/src/app/app.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Angular/src/app/app.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'app-root', 5 | templateUrl: './app.component.html', 6 | styleUrls: ['./app.component.css'] 7 | }) 8 | export class AppComponent { 9 | title = 'AngularInlineTableCRUD'; 10 | } 11 | -------------------------------------------------------------------------------- /Angular/src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { BrowserModule } from '@angular/platform-browser'; 2 | import { NgModule } from '@angular/core'; 3 | import { FormsModule,ReactiveFormsModule } from "@angular/forms"; 4 | 5 | import { AppComponent } from './app.component'; 6 | import { BankAccountComponent } from './bank-account/bank-account.component'; 7 | import { HttpClientModule } from '@angular/common/http'; 8 | 9 | @NgModule({ 10 | declarations: [ 11 | AppComponent, 12 | BankAccountComponent 13 | ], 14 | imports: [ 15 | BrowserModule, 16 | FormsModule, 17 | ReactiveFormsModule, 18 | HttpClientModule 19 | ], 20 | providers: [], 21 | bootstrap: [AppComponent] 22 | }) 23 | export class AppModule { } 24 | -------------------------------------------------------------------------------- /Angular/src/app/bank-account/bank-account.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/Angular/src/app/bank-account/bank-account.component.css -------------------------------------------------------------------------------- /Angular/src/app/bank-account/bank-account.component.html: -------------------------------------------------------------------------------- 1 |
2 |

My Bank Accounts

3 |
4 | Using inline table editing with Angular 8 and Asp.Net Core 5 |
6 |
7 | 8 |
9 |
10 |
11 |
Account No.
12 |
Account Holder
13 |
Bank
14 |
IFSC
15 |
16 | 19 |
20 |
21 | 22 | 23 | {{notification.message}} 24 | 25 |
26 |
27 |
28 |
29 |
30 |
31 | 32 |
33 |
34 | 35 |
36 |
37 | 41 |
42 |
43 | 44 |
45 |
46 | 51 | 54 |
55 |
56 |
57 |
-------------------------------------------------------------------------------- /Angular/src/app/bank-account/bank-account.component.ts: -------------------------------------------------------------------------------- 1 | import { BankAccountService } from './../shared/bank-account.service'; 2 | import { Component, OnInit } from '@angular/core'; 3 | import { FormBuilder, FormArray, Validators, FormGroup } from '@angular/forms'; 4 | import { BankService } from '../shared/bank.service'; 5 | 6 | @Component({ 7 | selector: 'app-bank-account', 8 | templateUrl: './bank-account.component.html', 9 | styleUrls: ['./bank-account.component.css'] 10 | }) 11 | export class BankAccountComponent implements OnInit { 12 | 13 | bankAccountForms: FormArray = this.fb.array([]); 14 | bankList = []; 15 | notification = null; 16 | 17 | constructor(private fb: FormBuilder, 18 | private bankService: BankService, 19 | private service: BankAccountService) { } 20 | 21 | ngOnInit() { 22 | this.bankService.getBankList() 23 | .subscribe(res => this.bankList = res as []); 24 | 25 | this.service.getBankAccountList().subscribe( 26 | res => { 27 | if (res == []) 28 | this.addBankAccountForm(); 29 | else { 30 | //generate formarray as per the data received from BankAccont table 31 | (res as []).forEach((bankAccount: any) => { 32 | this.bankAccountForms.push(this.fb.group({ 33 | bankAccountID: [bankAccount.bankAccountID], 34 | accountNumber: [bankAccount.accountNumber, Validators.required], 35 | accountHolder: [bankAccount.accountHolder, Validators.required], 36 | bankID: [bankAccount.bankID, Validators.min(1)], 37 | IFSC: [bankAccount.ifsc, Validators.required] 38 | })); 39 | }); 40 | } 41 | } 42 | ); 43 | } 44 | 45 | addBankAccountForm() { 46 | this.bankAccountForms.push(this.fb.group({ 47 | bankAccountID: [0], 48 | accountNumber: ['', Validators.required], 49 | accountHolder: ['', Validators.required], 50 | bankID: [0, Validators.min(1)], 51 | IFSC: ['', Validators.required] 52 | })); 53 | } 54 | 55 | recordSubmit(fg: FormGroup) { 56 | if (fg.value.bankAccountID == 0) 57 | this.service.postBankAccount(fg.value).subscribe( 58 | (res: any) => { 59 | fg.patchValue({ bankAccountID: res.bankAccountID }); 60 | this.showNotification('insert'); 61 | }); 62 | else 63 | this.service.putBankAccount(fg.value).subscribe( 64 | (res: any) => { 65 | this.showNotification('update'); 66 | }); 67 | } 68 | 69 | onDelete(bankAccountID, i) { 70 | if (bankAccountID == 0) 71 | this.bankAccountForms.removeAt(i); 72 | else if (confirm('Are you sure to delete this record ?')) 73 | this.service.deleteBankAccount(bankAccountID).subscribe( 74 | res => { 75 | this.bankAccountForms.removeAt(i); 76 | this.showNotification('delete'); 77 | }); 78 | } 79 | 80 | showNotification(category) { 81 | switch (category) { 82 | case 'insert': 83 | this.notification = { class: 'text-success', message: 'saved!' }; 84 | break; 85 | case 'update': 86 | this.notification = { class: 'text-primary', message: 'updated!' }; 87 | break; 88 | case 'delete': 89 | this.notification = { class: 'text-danger', message: 'deleted!' }; 90 | break; 91 | 92 | default: 93 | break; 94 | } 95 | setTimeout(() => { 96 | this.notification = null; 97 | }, 3000); 98 | } 99 | 100 | } 101 | -------------------------------------------------------------------------------- /Angular/src/app/shared/bank-account.service.ts: -------------------------------------------------------------------------------- 1 | import { HttpClient } from '@angular/common/http'; 2 | import { Injectable } from '@angular/core'; 3 | import { environment } from 'src/environments/environment'; 4 | 5 | @Injectable({ 6 | providedIn: 'root' 7 | }) 8 | export class BankAccountService { 9 | 10 | constructor(private http: HttpClient) { } 11 | 12 | postBankAccount(formData) { 13 | return this.http.post(environment.apiBaseURI + '/BankAccount', formData); 14 | } 15 | 16 | putBankAccount(formData) { 17 | return this.http.put(environment.apiBaseURI + '/BankAccount/' + formData.bankAccountID, formData); 18 | } 19 | 20 | deleteBankAccount(id) { 21 | return this.http.delete(environment.apiBaseURI + '/BankAccount/' + id); 22 | } 23 | 24 | getBankAccountList() { 25 | return this.http.get(environment.apiBaseURI + '/BankAccount'); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Angular/src/app/shared/bank.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@angular/core'; 2 | import { HttpClient } from "@angular/common/http"; 3 | import { environment } from 'src/environments/environment'; 4 | 5 | @Injectable({ 6 | providedIn: 'root' 7 | }) 8 | export class BankService { 9 | 10 | constructor(private http: HttpClient) { } 11 | 12 | getBankList() { 13 | return this.http.get(environment.apiBaseURI + '/Bank'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/Angular/src/assets/.gitkeep -------------------------------------------------------------------------------- /Angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Angular/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | // This file can be replaced during build by using the `fileReplacements` array. 2 | // `ng build --prod` replaces `environment.ts` with `environment.prod.ts`. 3 | // The list of file replacements can be found in `angular.json`. 4 | 5 | export const environment = { 6 | production: false, 7 | apiBaseURI :'http://localhost:50431/api' 8 | }; 9 | 10 | /* 11 | * For easier debugging in development mode, you can import the following file 12 | * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. 13 | * 14 | * This import should be commented out in production mode because it will have a negative impact 15 | * on performance if an error is thrown. 16 | */ 17 | // import 'zone.js/dist/zone-error'; // Included with Angular CLI. 18 | -------------------------------------------------------------------------------- /Angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/Angular/src/favicon.ico -------------------------------------------------------------------------------- /Angular/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | AngularInlineTableCRUD 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Angular/src/main.ts: -------------------------------------------------------------------------------- 1 | import { enableProdMode } from '@angular/core'; 2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; 3 | 4 | import { AppModule } from './app/app.module'; 5 | import { environment } from './environments/environment'; 6 | 7 | if (environment.production) { 8 | enableProdMode(); 9 | } 10 | 11 | platformBrowserDynamic().bootstrapModule(AppModule) 12 | .catch(err => console.error(err)); 13 | -------------------------------------------------------------------------------- /Angular/src/polyfills.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * This file includes polyfills needed by Angular and is loaded before the app. 3 | * You can add your own extra polyfills to this file. 4 | * 5 | * This file is divided into 2 sections: 6 | * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers. 7 | * 2. Application imports. Files imported after ZoneJS that should be loaded before your main 8 | * file. 9 | * 10 | * The current setup is for so-called "evergreen" browsers; the last versions of browsers that 11 | * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera), 12 | * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile. 13 | * 14 | * Learn more in https://angular.io/guide/browser-support 15 | */ 16 | 17 | /*************************************************************************************************** 18 | * BROWSER POLYFILLS 19 | */ 20 | 21 | /** IE10 and IE11 requires the following for NgClass support on SVG elements */ 22 | // import 'classlist.js'; // Run `npm install --save classlist.js`. 23 | 24 | /** 25 | * Web Animations `@angular/platform-browser/animations` 26 | * Only required if AnimationBuilder is used within the application and using IE/Edge or Safari. 27 | * Standard animation support in Angular DOES NOT require any polyfills (as of Angular 6.0). 28 | */ 29 | // import 'web-animations-js'; // Run `npm install --save web-animations-js`. 30 | 31 | /** 32 | * By default, zone.js will patch all possible macroTask and DomEvents 33 | * user can disable parts of macroTask/DomEvents patch by setting following flags 34 | * because those flags need to be set before `zone.js` being loaded, and webpack 35 | * will put import in the top of bundle, so user need to create a separate file 36 | * in this directory (for example: zone-flags.ts), and put the following flags 37 | * into that file, and then add the following code before importing zone.js. 38 | * import './zone-flags.ts'; 39 | * 40 | * The flags allowed in zone-flags.ts are listed here. 41 | * 42 | * The following flags will work for all browsers. 43 | * 44 | * (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame 45 | * (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick 46 | * (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames 47 | * 48 | * in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js 49 | * with the following flag, it will bypass `zone.js` patch for IE/Edge 50 | * 51 | * (window as any).__Zone_enable_cross_context_check = true; 52 | * 53 | */ 54 | 55 | /*************************************************************************************************** 56 | * Zone JS is required by default for Angular itself. 57 | */ 58 | import 'zone.js/dist/zone'; // Included with Angular CLI. 59 | 60 | 61 | /*************************************************************************************************** 62 | * APPLICATION IMPORTS 63 | */ 64 | -------------------------------------------------------------------------------- /Angular/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | .grid-table 3 | { 4 | display:table; 5 | } 6 | .thead 7 | { 8 | display:table-header-group; 9 | font-weight:bold; 10 | border-bottom: 1px solid black; 11 | text-align: center; 12 | background-color: #f0f8ff; 13 | } 14 | .tbody 15 | { 16 | display:table-row-group; 17 | } 18 | .tr 19 | { 20 | display:table-row; 21 | 22 | } 23 | .td 24 | { 25 | display:table-cell; 26 | padding: 10px 1px 1px 5px; 27 | } 28 | .thead div.tr div.td:last-child{ 29 | background-color: #fff; 30 | } 31 | i:hover{ 32 | cursor: pointer; 33 | } 34 | 35 | input.ng-invalid.ng-touched,select.ng-invalid.ng-touched{ 36 | border-color: #dc3545; 37 | } 38 | 39 | 40 | .elementToFadeInAndOut { 41 | -webkit-animation: fadeinout 2s linear forwards; 42 | animation: fadeinout 2s linear forwards; 43 | opacity: 0; 44 | } 45 | 46 | @-webkit-keyframes fadeinout { 47 | 50% { opacity: 1; } 48 | } 49 | 50 | @keyframes fadeinout { 51 | 50% { opacity: 1; } 52 | } -------------------------------------------------------------------------------- /Angular/src/test.ts: -------------------------------------------------------------------------------- 1 | // This file is required by karma.conf.js and loads recursively all the .spec and framework files 2 | 3 | import 'zone.js/dist/zone-testing'; 4 | import { getTestBed } from '@angular/core/testing'; 5 | import { 6 | BrowserDynamicTestingModule, 7 | platformBrowserDynamicTesting 8 | } from '@angular/platform-browser-dynamic/testing'; 9 | 10 | declare const require: any; 11 | 12 | // First, initialize the Angular testing environment. 13 | getTestBed().initTestEnvironment( 14 | BrowserDynamicTestingModule, 15 | platformBrowserDynamicTesting() 16 | ); 17 | // Then we find all the tests. 18 | const context = require.context('./', true, /\.spec\.ts$/); 19 | // And load the modules. 20 | context.keys().map(context); 21 | -------------------------------------------------------------------------------- /Angular/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [] 6 | }, 7 | "include": [ 8 | "src/**/*.ts" 9 | ], 10 | "exclude": [ 11 | "src/test.ts", 12 | "src/**/*.spec.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /Angular/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "baseUrl": "./", 5 | "outDir": "./dist/out-tsc", 6 | "sourceMap": true, 7 | "declaration": false, 8 | "downlevelIteration": true, 9 | "emitDecoratorMetadata": true, 10 | "experimentalDecorators": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "importHelpers": true, 14 | "target": "es2015", 15 | "typeRoots": [ 16 | "node_modules/@types" 17 | ], 18 | "lib": [ 19 | "es2018", 20 | "dom" 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Angular/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "src/test.ts", 12 | "src/polyfills.ts" 13 | ], 14 | "include": [ 15 | "src/**/*.spec.ts", 16 | "src/**/*.d.ts" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /Angular/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint:recommended", 3 | "rules": { 4 | "array-type": false, 5 | "arrow-parens": false, 6 | "deprecation": { 7 | "severity": "warn" 8 | }, 9 | "component-class-suffix": true, 10 | "contextual-lifecycle": true, 11 | "directive-class-suffix": true, 12 | "directive-selector": [ 13 | true, 14 | "attribute", 15 | "app", 16 | "camelCase" 17 | ], 18 | "component-selector": [ 19 | true, 20 | "element", 21 | "app", 22 | "kebab-case" 23 | ], 24 | "import-blacklist": [ 25 | true, 26 | "rxjs/Rx" 27 | ], 28 | "interface-name": false, 29 | "max-classes-per-file": false, 30 | "max-line-length": [ 31 | true, 32 | 140 33 | ], 34 | "member-access": false, 35 | "member-ordering": [ 36 | true, 37 | { 38 | "order": [ 39 | "static-field", 40 | "instance-field", 41 | "static-method", 42 | "instance-method" 43 | ] 44 | } 45 | ], 46 | "no-consecutive-blank-lines": false, 47 | "no-console": [ 48 | true, 49 | "debug", 50 | "info", 51 | "time", 52 | "timeEnd", 53 | "trace" 54 | ], 55 | "no-empty": false, 56 | "no-inferrable-types": [ 57 | true, 58 | "ignore-params" 59 | ], 60 | "no-non-null-assertion": true, 61 | "no-redundant-jsdoc": true, 62 | "no-switch-case-fall-through": true, 63 | "no-use-before-declare": true, 64 | "no-var-requires": false, 65 | "object-literal-key-quotes": [ 66 | true, 67 | "as-needed" 68 | ], 69 | "object-literal-sort-keys": false, 70 | "ordered-imports": false, 71 | "quotemark": [ 72 | true, 73 | "single" 74 | ], 75 | "trailing-comma": false, 76 | "no-conflicting-lifecycle": true, 77 | "no-host-metadata-property": true, 78 | "no-input-rename": true, 79 | "no-inputs-metadata-property": true, 80 | "no-output-native": true, 81 | "no-output-on-prefix": true, 82 | "no-output-rename": true, 83 | "no-outputs-metadata-property": true, 84 | "template-banana-in-box": true, 85 | "template-no-negated-async": true, 86 | "use-lifecycle-interface": true, 87 | "use-pipe-transform-interface": true 88 | }, 89 | "rulesDirectory": [ 90 | "codelyzer" 91 | ] 92 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Angular Inline Table Editing with Asp.Net Core Web API 2 | 3 | ## How it works ? 4 | 5 | :tv: Video tutorial on this same topic 6 | Url : https://youtu.be/3BsTfc_pv_4 7 | 8 | Video Tutorial for Angular Inline Table Editing with Asp.Net Core Web API 11 | 12 | 13 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us | 14 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------| 15 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW | 16 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE | 17 | | React |http://bit.ly/325temF | | 18 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us | 19 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com | 20 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection | 21 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection | 22 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection | 23 | | MEAN Stack |https://goo.gl/YJPPAH | | 24 | | C# Tutorial |https://goo.gl/s1zJxo | | 25 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | | 26 | | C# WinForm |https://goo.gl/vHS9Hd | | 27 | | MS SQL |https://goo.gl/MLYS9e | | 28 | | Crystal Report |https://goo.gl/5Vou7t | | 29 | | CG Exercises in C Program |https://goo.gl/qEWJCs | | 30 | -------------------------------------------------------------------------------- /WebAPI/.idea/.idea.WebAPI/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Rider ignored files 5 | /modules.xml 6 | /projectSettingsUpdater.xml 7 | /contentModel.xml 8 | /.idea.WebAPI.iml 9 | # Editor-based HTTP Client requests 10 | /httpRequests/ 11 | # Datasource local storage ignored files 12 | /dataSources/ 13 | /dataSources.local.xml 14 | -------------------------------------------------------------------------------- /WebAPI/.idea/.idea.WebAPI/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /WebAPI/.idea/.idea.WebAPI/.idea/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WebAPI/.idea/.idea.WebAPI/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/.vs/WebAPI/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/.vs/WebAPI/v15/.suo -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/.vs/WebAPI/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /WebAPI/.vs/WebAPI/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/.vs/WebAPI/v17/.suo -------------------------------------------------------------------------------- /WebAPI/WebAPI.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.168 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPI", "WebAPI\WebAPI.csproj", "{C4926054-BB8E-4C9A-8277-6510B6EE6CFD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {C4926054-BB8E-4C9A-8277-6510B6EE6CFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C4926054-BB8E-4C9A-8277-6510B6EE6CFD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C4926054-BB8E-4C9A-8277-6510B6EE6CFD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C4926054-BB8E-4C9A-8277-6510B6EE6CFD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {117EC691-9B59-4353-85E8-0FED9DE7EB1F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Controllers/BankAccountController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Http; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.EntityFrameworkCore; 8 | using WebAPI.Models; 9 | 10 | namespace WebAPI.Controllers 11 | { 12 | [Route("api/[controller]")] 13 | [ApiController] 14 | public class BankAccountController : ControllerBase 15 | { 16 | private readonly APIDBContext _context; 17 | 18 | public BankAccountController(APIDBContext context) 19 | { 20 | _context = context; 21 | } 22 | 23 | // GET: api/BankAccount 24 | [HttpGet] 25 | public async Task>> GetBankAccounts() 26 | { 27 | return await _context.BankAccounts.ToListAsync(); 28 | } 29 | 30 | // GET: api/BankAccount/5 31 | [HttpGet("{id}")] 32 | public async Task> GetBankAccount(int id) 33 | { 34 | var bankAccount = await _context.BankAccounts.FindAsync(id); 35 | 36 | if (bankAccount == null) 37 | { 38 | return NotFound(); 39 | } 40 | 41 | return bankAccount; 42 | } 43 | 44 | // PUT: api/BankAccount/5 45 | [HttpPut("{id}")] 46 | public async Task PutBankAccount(int id, BankAccount bankAccount) 47 | { 48 | if (id != bankAccount.BankAccountID) 49 | { 50 | return BadRequest(); 51 | } 52 | 53 | _context.Entry(bankAccount).State = EntityState.Modified; 54 | 55 | try 56 | { 57 | await _context.SaveChangesAsync(); 58 | } 59 | catch (DbUpdateConcurrencyException) 60 | { 61 | if (!BankAccountExists(id)) 62 | { 63 | return NotFound(); 64 | } 65 | else 66 | { 67 | throw; 68 | } 69 | } 70 | 71 | return NoContent(); 72 | } 73 | 74 | // POST: api/BankAccount 75 | [HttpPost] 76 | public async Task> PostBankAccount(BankAccount bankAccount) 77 | { 78 | _context.BankAccounts.Add(bankAccount); 79 | await _context.SaveChangesAsync(); 80 | 81 | return CreatedAtAction("GetBankAccount", new { id = bankAccount.BankAccountID }, bankAccount); 82 | } 83 | 84 | // DELETE: api/BankAccount/5 85 | [HttpDelete("{id}")] 86 | public async Task> DeleteBankAccount(int id) 87 | { 88 | var bankAccount = await _context.BankAccounts.FindAsync(id); 89 | if (bankAccount == null) 90 | { 91 | return NotFound(); 92 | } 93 | 94 | _context.BankAccounts.Remove(bankAccount); 95 | await _context.SaveChangesAsync(); 96 | 97 | return bankAccount; 98 | } 99 | 100 | private bool BankAccountExists(int id) 101 | { 102 | return _context.BankAccounts.Any(e => e.BankAccountID == id); 103 | } 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Controllers/BankController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Http; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.EntityFrameworkCore; 8 | using WebAPI.Models; 9 | 10 | namespace WebAPI.Controllers 11 | { 12 | [Route("api/[controller]")] 13 | [ApiController] 14 | public class BankController : ControllerBase 15 | { 16 | private readonly APIDBContext _context; 17 | 18 | public BankController(APIDBContext context) 19 | { 20 | _context = context; 21 | } 22 | 23 | // GET: api/Bank 24 | [HttpGet] 25 | public async Task>> GetBanks() 26 | { 27 | return await _context.Banks.ToListAsync(); 28 | } 29 | 30 | // GET: api/Bank/5 31 | [HttpGet("{id}")] 32 | public async Task> GetBank(int id) 33 | { 34 | var bank = await _context.Banks.FindAsync(id); 35 | 36 | if (bank == null) 37 | { 38 | return NotFound(); 39 | } 40 | 41 | return bank; 42 | } 43 | 44 | // PUT: api/Bank/5 45 | [HttpPut("{id}")] 46 | public async Task PutBank(int id, Bank bank) 47 | { 48 | if (id != bank.BankID) 49 | { 50 | return BadRequest(); 51 | } 52 | 53 | _context.Entry(bank).State = EntityState.Modified; 54 | 55 | try 56 | { 57 | await _context.SaveChangesAsync(); 58 | } 59 | catch (DbUpdateConcurrencyException) 60 | { 61 | if (!BankExists(id)) 62 | { 63 | return NotFound(); 64 | } 65 | else 66 | { 67 | throw; 68 | } 69 | } 70 | 71 | return NoContent(); 72 | } 73 | 74 | // POST: api/Bank 75 | [HttpPost] 76 | public async Task> PostBank(Bank bank) 77 | { 78 | _context.Banks.Add(bank); 79 | await _context.SaveChangesAsync(); 80 | 81 | return CreatedAtAction("GetBank", new { id = bank.BankID }, bank); 82 | } 83 | 84 | // DELETE: api/Bank/5 85 | [HttpDelete("{id}")] 86 | public async Task> DeleteBank(int id) 87 | { 88 | var bank = await _context.Banks.FindAsync(id); 89 | if (bank == null) 90 | { 91 | return NotFound(); 92 | } 93 | 94 | _context.Banks.Remove(bank); 95 | await _context.SaveChangesAsync(); 96 | 97 | return bank; 98 | } 99 | 100 | private bool BankExists(int id) 101 | { 102 | return _context.Banks.Any(e => e.BankID == id); 103 | } 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Mvc; 6 | 7 | namespace WebAPI.Controllers 8 | { 9 | [Route("api/[controller]")] 10 | [ApiController] 11 | public class ValuesController : ControllerBase 12 | { 13 | // GET api/values 14 | [HttpGet] 15 | public ActionResult> Get() 16 | { 17 | return new string[] { "value1", "value2" }; 18 | } 19 | 20 | // GET api/values/5 21 | [HttpGet("{id}")] 22 | public ActionResult Get(int id) 23 | { 24 | return "value"; 25 | } 26 | 27 | // POST api/values 28 | [HttpPost] 29 | public void Post([FromBody] string value) 30 | { 31 | } 32 | 33 | // PUT api/values/5 34 | [HttpPut("{id}")] 35 | public void Put(int id, [FromBody] string value) 36 | { 37 | } 38 | 39 | // DELETE api/values/5 40 | [HttpDelete("{id}")] 41 | public void Delete(int id) 42 | { 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Migrations/20190826070102_InitialDB.Designer.cs: -------------------------------------------------------------------------------- 1 | // 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.EntityFrameworkCore.Infrastructure; 4 | using Microsoft.EntityFrameworkCore.Metadata; 5 | using Microsoft.EntityFrameworkCore.Migrations; 6 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 7 | using WebAPI.Models; 8 | 9 | namespace WebAPI.Migrations 10 | { 11 | [DbContext(typeof(APIDBContext))] 12 | [Migration("20190826070102_InitialDB")] 13 | partial class InitialDB 14 | { 15 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 16 | { 17 | #pragma warning disable 612, 618 18 | modelBuilder 19 | .HasAnnotation("ProductVersion", "2.2.0-rtm-35687") 20 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 21 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 22 | 23 | modelBuilder.Entity("WebAPI.Models.Bank", b => 24 | { 25 | b.Property("BankID") 26 | .ValueGeneratedOnAdd() 27 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 28 | 29 | b.Property("BankName") 30 | .HasColumnType("nvarchar(100)"); 31 | 32 | b.HasKey("BankID"); 33 | 34 | b.ToTable("Banks"); 35 | }); 36 | 37 | modelBuilder.Entity("WebAPI.Models.BankAccount", b => 38 | { 39 | b.Property("BankAccountID") 40 | .ValueGeneratedOnAdd() 41 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 42 | 43 | b.Property("AccountHolder") 44 | .IsRequired() 45 | .HasColumnType("nvarchar(100)"); 46 | 47 | b.Property("AccountNumber") 48 | .IsRequired() 49 | .HasColumnType("nvarchar(20)"); 50 | 51 | b.Property("BankID"); 52 | 53 | b.Property("IFSC") 54 | .IsRequired() 55 | .HasColumnType("nvarchar(20)"); 56 | 57 | b.HasKey("BankAccountID"); 58 | 59 | b.ToTable("BankAccounts"); 60 | }); 61 | #pragma warning restore 612, 618 62 | } 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Migrations/20190826070102_InitialDB.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Metadata; 2 | using Microsoft.EntityFrameworkCore.Migrations; 3 | 4 | namespace WebAPI.Migrations 5 | { 6 | public partial class InitialDB : Migration 7 | { 8 | protected override void Up(MigrationBuilder migrationBuilder) 9 | { 10 | migrationBuilder.CreateTable( 11 | name: "BankAccounts", 12 | columns: table => new 13 | { 14 | BankAccountID = table.Column(nullable: false) 15 | .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), 16 | AccountNumber = table.Column(type: "nvarchar(20)", nullable: false), 17 | AccountHolder = table.Column(type: "nvarchar(100)", nullable: false), 18 | BankID = table.Column(nullable: false), 19 | IFSC = table.Column(type: "nvarchar(20)", nullable: false) 20 | }, 21 | constraints: table => 22 | { 23 | table.PrimaryKey("PK_BankAccounts", x => x.BankAccountID); 24 | }); 25 | 26 | migrationBuilder.CreateTable( 27 | name: "Banks", 28 | columns: table => new 29 | { 30 | BankID = table.Column(nullable: false) 31 | .Annotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn), 32 | BankName = table.Column(type: "nvarchar(100)", nullable: true) 33 | }, 34 | constraints: table => 35 | { 36 | table.PrimaryKey("PK_Banks", x => x.BankID); 37 | }); 38 | } 39 | 40 | protected override void Down(MigrationBuilder migrationBuilder) 41 | { 42 | migrationBuilder.DropTable( 43 | name: "BankAccounts"); 44 | 45 | migrationBuilder.DropTable( 46 | name: "Banks"); 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Migrations/APIDBContextModelSnapshot.cs: -------------------------------------------------------------------------------- 1 | // 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.EntityFrameworkCore.Infrastructure; 4 | using Microsoft.EntityFrameworkCore.Metadata; 5 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 6 | using WebAPI.Models; 7 | 8 | namespace WebAPI.Migrations 9 | { 10 | [DbContext(typeof(APIDBContext))] 11 | partial class APIDBContextModelSnapshot : ModelSnapshot 12 | { 13 | protected override void BuildModel(ModelBuilder modelBuilder) 14 | { 15 | #pragma warning disable 612, 618 16 | modelBuilder 17 | .HasAnnotation("ProductVersion", "2.2.0-rtm-35687") 18 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 19 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 20 | 21 | modelBuilder.Entity("WebAPI.Models.Bank", b => 22 | { 23 | b.Property("BankID") 24 | .ValueGeneratedOnAdd() 25 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 26 | 27 | b.Property("BankName") 28 | .HasColumnType("nvarchar(100)"); 29 | 30 | b.HasKey("BankID"); 31 | 32 | b.ToTable("Banks"); 33 | }); 34 | 35 | modelBuilder.Entity("WebAPI.Models.BankAccount", b => 36 | { 37 | b.Property("BankAccountID") 38 | .ValueGeneratedOnAdd() 39 | .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); 40 | 41 | b.Property("AccountHolder") 42 | .IsRequired() 43 | .HasColumnType("nvarchar(100)"); 44 | 45 | b.Property("AccountNumber") 46 | .IsRequired() 47 | .HasColumnType("nvarchar(20)"); 48 | 49 | b.Property("BankID"); 50 | 51 | b.Property("IFSC") 52 | .IsRequired() 53 | .HasColumnType("nvarchar(20)"); 54 | 55 | b.HasKey("BankAccountID"); 56 | 57 | b.ToTable("BankAccounts"); 58 | }); 59 | #pragma warning restore 612, 618 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Models/APIDBContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace WebAPI.Models 8 | { 9 | public class APIDBContext : DbContext 10 | { 11 | public APIDBContext(DbContextOptions options) : base(options) 12 | { 13 | 14 | } 15 | 16 | public DbSet Banks { get; set; } 17 | public DbSet BankAccounts { get; set; } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Models/Bank.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace WebAPI.Models 9 | { 10 | public class Bank 11 | { 12 | [Key] 13 | public int BankID { get; set; } 14 | [Column(TypeName ="nvarchar(100)")] 15 | public string BankName { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Models/BankAccount.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace WebAPI.Models 9 | { 10 | public class BankAccount 11 | { 12 | [Key] 13 | public int BankAccountID { get; set; } 14 | [Column(TypeName ="nvarchar(20)")] 15 | [Required] 16 | public string AccountNumber { get; set; } 17 | [Column(TypeName = "nvarchar(100)")] 18 | [Required] 19 | public string AccountHolder { get; set; } 20 | [Required] 21 | public int BankID { get; set; } 22 | [Column(TypeName = "nvarchar(20)")] 23 | [Required] 24 | public string IFSC { get; set; } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore; 7 | using Microsoft.AspNetCore.Hosting; 8 | using Microsoft.Extensions.Configuration; 9 | using Microsoft.Extensions.Logging; 10 | 11 | namespace WebAPI 12 | { 13 | public class Program 14 | { 15 | public static void Main(string[] args) 16 | { 17 | CreateWebHostBuilder(args).Build().Run(); 18 | } 19 | 20 | public static IWebHostBuilder CreateWebHostBuilder(string[] args) => 21 | WebHost.CreateDefaultBuilder(args) 22 | .UseStartup(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:50431", 8 | "sslPort": 0 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "api/values", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "WebAPI": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "api/values", 24 | "applicationUrl": "http://localhost:5000", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/Startup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Builder; 2 | using Microsoft.AspNetCore.Hosting; 3 | using Microsoft.AspNetCore.Mvc; 4 | using Microsoft.EntityFrameworkCore; 5 | using Microsoft.Extensions.Configuration; 6 | using Microsoft.Extensions.DependencyInjection; 7 | using WebAPI.Models; 8 | 9 | namespace WebAPI 10 | { 11 | public class Startup 12 | { 13 | public Startup(IConfiguration configuration) 14 | { 15 | Configuration = configuration; 16 | } 17 | 18 | public IConfiguration Configuration { get; } 19 | 20 | // This method gets called by the runtime. Use this method to add services to the container. 21 | public void ConfigureServices(IServiceCollection services) 22 | { 23 | // services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); 24 | services.AddMvc(); 25 | 26 | services.AddDbContext(options => options.UseSqlServer(Configuration.GetConnectionString("DevConnection"))); 27 | } 28 | 29 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 30 | public void Configure(IApplicationBuilder app, IHostingEnvironment env) 31 | { 32 | if (env.IsDevelopment()) 33 | { 34 | app.UseDeveloperExceptionPage(); 35 | } 36 | 37 | app.Use(async (ctx, next) => 38 | { 39 | await next(); 40 | if (ctx.Response.StatusCode == 204) 41 | { 42 | ctx.Response.ContentLength = 0; 43 | } 44 | }); 45 | 46 | app.UseCors(options => 47 | options.WithOrigins("http://localhost:4200") 48 | .AllowAnyMethod() 49 | .AllowAnyHeader()); 50 | 51 | //app.UseMvc(); 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/WebAPI.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | InProcess 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | all 15 | runtime; build; native; contentfiles; analyzers; buildtransitive 16 | 17 | 18 | 19 | all 20 | runtime; build; native; contentfiles; analyzers; buildtransitive 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/WebAPI.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ApiControllerWithContextScaffolder 5 | root/Controller 6 | 600 7 | True 8 | False 9 | True 10 | 11 | WebAPI.Models.APIDBContext 12 | False 13 | 14 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*", 8 | "ConnectionStrings": { 9 | "DevConnection": "Server=.; Database=BankDB; Trusted_Connection=True; MultipleActiveResultSets=True;" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Fazrin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Fazrin\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/WebAPI.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp2.2", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "2.2.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true, 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp2.2/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*", 8 | "ConnectionStrings": { 9 | "DevConnection": "Server=.; Database=BankDB; Trusted_Connection=True; MultipleActiveResultSets=True;" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.exe -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Fazrin\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Fazrin\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/WebAPI.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "3.1.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true, 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Debug", 5 | "System": "Information", 6 | "Microsoft": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*", 8 | "ConnectionStrings": { 9 | "DevConnection": "Server=.; Database=BankDB; Trusted_Connection=True; MultipleActiveResultSets=True;" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/.NETCoreApp,Version=v2.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.2", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("WebAPI")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("WebAPI")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("WebAPI")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8071d147e32d0630849d28d7010f1c7d9f5cfc82 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = WebAPI 3 | build_property.ProjectDir = E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\ 4 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 956d135b4025f3ddc3d3abd4139e3f09fdc815fb 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.RelatedAssemblyAttribute("WebAPI.Views")] 15 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorLanguageVersionAttribute("2.1")] 16 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorConfigurationNameAttribute("MVC-2.1")] 17 | [assembly: Microsoft.AspNetCore.Razor.Hosting.RazorExtensionAssemblyNameAttribute("MVC-2.1", "Microsoft.AspNetCore.Mvc.Razor.Extensions")] 18 | 19 | // Generated by the MSBuild WriteCodeFragment class. 20 | 21 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 425a257f2524fe85d4c5b963eb1a394a4032abc4 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.assets.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 513864fbd06800ecb2cd855d11d37b1108374988 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.deps.json 2 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.runtimeconfig.json 3 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.runtimeconfig.dev.json 4 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.dll 5 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.pdb 6 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.csprojAssemblyReference.cache 7 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.csproj.CoreCompileInputs.cache 8 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.RazorAssemblyInfo.cache 9 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.RazorAssemblyInfo.cs 10 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.AssemblyInfoInputs.cache 11 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.AssemblyInfo.cs 12 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.RazorTargetAssemblyInfo.cache 13 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.dll 14 | F:\profession\CodAffection\Angular 8\Inline Table Editing in Angular\project\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.pdb 15 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\appsettings.Development.json 16 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\appsettings.json 17 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.deps.json 18 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.runtimeconfig.json 19 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.runtimeconfig.dev.json 20 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.dll 21 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp2.2\WebAPI.pdb 22 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.csproj.AssemblyReference.cache 23 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.GeneratedMSBuildEditorConfig.editorconfig 24 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.AssemblyInfoInputs.cache 25 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.AssemblyInfo.cs 26 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.csproj.CoreCompileInputs.cache 27 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.RazorAssemblyInfo.cache 28 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.RazorAssemblyInfo.cs 29 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.RazorTargetAssemblyInfo.cache 30 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.dll 31 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.pdb 32 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp2.2\WebAPI.genruntimeconfig.cache 33 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 8e33105e08123e90e54a15865a51539b212a7501 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp2.2/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("WebAPI")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("WebAPI")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("WebAPI")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8071d147e32d0630849d28d7010f1c7d9f5cfc82 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.RootNamespace = WebAPI 3 | build_property.ProjectDir = E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\ 4 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 030f17057944b52e4af54907292b64b16d08c43d 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.assets.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.BuildWithSkipAnalyzers -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.CopyComplete -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5371ff2e32995823fd05ec74de00a20157b9c590 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\appsettings.Development.json 2 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\appsettings.json 3 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\WebAPI.exe 4 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\WebAPI.deps.json 5 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\WebAPI.runtimeconfig.json 6 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\WebAPI.runtimeconfig.dev.json 7 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\WebAPI.dll 8 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\WebAPI.pdb 9 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.AspNetCore.Razor.Language.dll 10 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll 11 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Bcl.HashCode.dll 12 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.dll 13 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.dll 14 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.CSharp.Workspaces.dll 15 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.Razor.dll 16 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.CodeAnalysis.Workspaces.dll 17 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Data.SqlClient.dll 18 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll 19 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll 20 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Design.dll 21 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll 22 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.SqlServer.dll 23 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll 24 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll 25 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll 26 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll 27 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Binder.dll 28 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll 29 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll 30 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll 31 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll 32 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll 33 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll 34 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.Identity.Client.dll 35 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.JsonWebTokens.dll 36 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Logging.dll 37 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.dll 38 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll 39 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.IdentityModel.Tokens.dll 40 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.dll 41 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll 42 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll 43 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\dotnet-aspnet-codegenerator-design.dll 44 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll 45 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll 46 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll 47 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll 48 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll 49 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\NuGet.Frameworks.dll 50 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll 51 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Composition.AttributedModel.dll 52 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Composition.Convention.dll 53 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Composition.Hosting.dll 54 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Composition.Runtime.dll 55 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Composition.TypedParts.dll 56 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Configuration.ConfigurationManager.dll 57 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll 58 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.IdentityModel.Tokens.Jwt.dll 59 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Runtime.Caching.dll 60 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\System.Security.Cryptography.ProtectedData.dll 61 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.resources.dll 62 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.resources.dll 63 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.resources.dll 64 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.resources.dll 65 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.resources.dll 66 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.resources.dll 67 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.resources.dll 68 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.resources.dll 69 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.resources.dll 70 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.resources.dll 71 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.resources.dll 72 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.resources.dll 73 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.resources.dll 74 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.CSharp.resources.dll 75 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.CSharp.resources.dll 76 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.CSharp.resources.dll 77 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.CSharp.resources.dll 78 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.CSharp.resources.dll 79 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.CSharp.resources.dll 80 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.CSharp.resources.dll 81 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.CSharp.resources.dll 82 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll 83 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.CSharp.resources.dll 84 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.CSharp.resources.dll 85 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll 86 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll 87 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 88 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 89 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 90 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 91 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 92 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 93 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 94 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 95 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 96 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 97 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 98 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 99 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 100 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll 101 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\de\Microsoft.CodeAnalysis.Workspaces.resources.dll 102 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\es\Microsoft.CodeAnalysis.Workspaces.resources.dll 103 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll 104 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\it\Microsoft.CodeAnalysis.Workspaces.resources.dll 105 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll 106 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll 107 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll 108 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll 109 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll 110 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll 111 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll 112 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll 113 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 114 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.1\Microsoft.Data.SqlClient.dll 115 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\win-arm64\native\sni.dll 116 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\win-x64\native\sni.dll 117 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\win-x86\native\sni.dll 118 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Runtime.Caching.dll 119 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Runtime.Caching.dll 120 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\bin\Debug\netcoreapp3.1\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll 121 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.csproj.AssemblyReference.cache 122 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.GeneratedMSBuildEditorConfig.editorconfig 123 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.AssemblyInfoInputs.cache 124 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.AssemblyInfo.cs 125 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.csproj.CoreCompileInputs.cache 126 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.MvcApplicationPartsAssemblyInfo.cache 127 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.RazorTargetAssemblyInfo.cache 128 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.csproj.CopyComplete 129 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.dll 130 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.pdb 131 | E:\Users\Fazrin\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\WebAPI\WebAPI\obj\Debug\netcoreapp3.1\WebAPI.genruntimeconfig.cache 132 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.dll -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 3c7e7e6d26dcbf218fe1ba1f56202e8473c6b96f 2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/WebAPI.pdb -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/Debug/netcoreapp3.1/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/Angular-Inline-Editing-with-Asp.Net-Core-Web-API/84ad8e08adeb0ad8e3865b859c70da503cee8153/WebAPI/WebAPI/obj/Debug/netcoreapp3.1/apphost.exe -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/WebAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\WebAPI.csproj": {} 5 | }, 6 | "projects": { 7 | "E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\WebAPI.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\WebAPI.csproj", 11 | "projectName": "WebAPI", 12 | "projectPath": "E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\WebAPI.csproj", 13 | "packagesPath": "C:\\Users\\Fazrin\\.nuget\\packages\\", 14 | "outputPath": "E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Fazrin\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "netcoreapp3.1" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "netcoreapp3.1": { 29 | "targetAlias": "netcoreapp3.1", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "netcoreapp3.1": { 41 | "targetAlias": "netcoreapp3.1", 42 | "dependencies": { 43 | "Microsoft.AspNetCore.Cors": { 44 | "target": "Package", 45 | "version": "[2.2.0, )" 46 | }, 47 | "Microsoft.AspNetCore.Razor.Design": { 48 | "suppressParent": "All", 49 | "target": "Package", 50 | "version": "[2.2.0, )" 51 | }, 52 | "Microsoft.EntityFrameworkCore": { 53 | "target": "Package", 54 | "version": "[3.1.23, )" 55 | }, 56 | "Microsoft.EntityFrameworkCore.Design": { 57 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 58 | "suppressParent": "All", 59 | "target": "Package", 60 | "version": "[3.1.23, )" 61 | }, 62 | "Microsoft.EntityFrameworkCore.SqlServer": { 63 | "target": "Package", 64 | "version": "[3.1.23, )" 65 | }, 66 | "Microsoft.EntityFrameworkCore.Tools": { 67 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 68 | "suppressParent": "All", 69 | "target": "Package", 70 | "version": "[3.1.23, )" 71 | }, 72 | "Microsoft.VisualStudio.Web.CodeGeneration.Design": { 73 | "target": "Package", 74 | "version": "[3.1.5, )" 75 | } 76 | }, 77 | "imports": [ 78 | "net461", 79 | "net462", 80 | "net47", 81 | "net471", 82 | "net472", 83 | "net48" 84 | ], 85 | "assetTargetFallback": true, 86 | "warn": true, 87 | "frameworkReferences": { 88 | "Microsoft.AspNetCore.App": { 89 | "privateAssets": "none" 90 | }, 91 | "Microsoft.NETCore.App": { 92 | "privateAssets": "all" 93 | } 94 | }, 95 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json" 96 | } 97 | } 98 | } 99 | } 100 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/WebAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Fazrin\.nuget\packages\ 9 | PackageReference 10 | 6.1.0 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | C:\Users\Fazrin\.nuget\packages\microsoft.codeanalysis.analyzers\2.9.4 21 | C:\Users\Fazrin\.nuget\packages\microsoft.entityframeworkcore.tools\3.1.23 22 | C:\Users\Fazrin\.nuget\packages\microsoft.aspnetcore.razor.design\2.2.0 23 | 24 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/WebAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "anfmPp9rjeub977FTWVIi2hBZgFbelflL+9p1uTLh5eVRDVwsVo5ppd1WIvNRqIIyPP7oxn+42Lo5HM7wKyygg==", 4 | "success": true, 5 | "projectFilePath": "E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\WebAPI.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.cors\\2.2.0\\microsoft.aspnetcore.cors.2.2.0.nupkg.sha512", 8 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", 9 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512", 10 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512", 11 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512", 12 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", 13 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.razor.design\\2.2.0\\microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512", 14 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\3.1.0\\microsoft.aspnetcore.razor.language.3.1.0.nupkg.sha512", 15 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", 16 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", 17 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.bcl.hashcode\\1.1.1\\microsoft.bcl.hashcode.1.1.1.nupkg.sha512", 18 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\2.9.4\\microsoft.codeanalysis.analyzers.2.9.4.nupkg.sha512", 19 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.codeanalysis.common\\3.3.1\\microsoft.codeanalysis.common.3.3.1.nupkg.sha512", 20 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.3.1\\microsoft.codeanalysis.csharp.3.3.1.nupkg.sha512", 21 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.3.1\\microsoft.codeanalysis.csharp.workspaces.3.3.1.nupkg.sha512", 22 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.codeanalysis.razor\\3.1.0\\microsoft.codeanalysis.razor.3.1.0.nupkg.sha512", 23 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.3.1\\microsoft.codeanalysis.workspaces.common.3.3.1.nupkg.sha512", 24 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", 25 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.data.sqlclient\\1.1.3\\microsoft.data.sqlclient.1.1.3.nupkg.sha512", 26 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.entityframeworkcore\\3.1.23\\microsoft.entityframeworkcore.3.1.23.nupkg.sha512", 27 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\3.1.23\\microsoft.entityframeworkcore.abstractions.3.1.23.nupkg.sha512", 28 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\3.1.23\\microsoft.entityframeworkcore.analyzers.3.1.23.nupkg.sha512", 29 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.entityframeworkcore.design\\3.1.23\\microsoft.entityframeworkcore.design.3.1.23.nupkg.sha512", 30 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.23\\microsoft.entityframeworkcore.relational.3.1.23.nupkg.sha512", 31 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\3.1.23\\microsoft.entityframeworkcore.sqlserver.3.1.23.nupkg.sha512", 32 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\3.1.23\\microsoft.entityframeworkcore.tools.3.1.23.nupkg.sha512", 33 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\3.1.23\\microsoft.extensions.caching.abstractions.3.1.23.nupkg.sha512", 34 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.caching.memory\\3.1.23\\microsoft.extensions.caching.memory.3.1.23.nupkg.sha512", 35 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.23\\microsoft.extensions.configuration.3.1.23.nupkg.sha512", 36 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\3.1.23\\microsoft.extensions.configuration.abstractions.3.1.23.nupkg.sha512", 37 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.configuration.binder\\3.1.23\\microsoft.extensions.configuration.binder.3.1.23.nupkg.sha512", 38 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.23\\microsoft.extensions.dependencyinjection.3.1.23.nupkg.sha512", 39 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.23\\microsoft.extensions.dependencyinjection.abstractions.3.1.23.nupkg.sha512", 40 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\2.2.0\\microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512", 41 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.logging\\3.1.23\\microsoft.extensions.logging.3.1.23.nupkg.sha512", 42 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\3.1.23\\microsoft.extensions.logging.abstractions.3.1.23.nupkg.sha512", 43 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.options\\3.1.23\\microsoft.extensions.options.3.1.23.nupkg.sha512", 44 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.extensions.primitives\\3.1.23\\microsoft.extensions.primitives.3.1.23.nupkg.sha512", 45 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.identity.client\\3.0.8\\microsoft.identity.client.3.0.8.nupkg.sha512", 46 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\5.5.0\\microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512", 47 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.identitymodel.logging\\5.5.0\\microsoft.identitymodel.logging.5.5.0.nupkg.sha512", 48 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.identitymodel.protocols\\5.5.0\\microsoft.identitymodel.protocols.5.5.0.nupkg.sha512", 49 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\5.5.0\\microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512", 50 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.identitymodel.tokens\\5.5.0\\microsoft.identitymodel.tokens.5.5.0.nupkg.sha512", 51 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512", 52 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", 53 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", 54 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\3.1.5\\microsoft.visualstudio.web.codegeneration.3.1.5.nupkg.sha512", 55 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\3.1.5\\microsoft.visualstudio.web.codegeneration.contracts.3.1.5.nupkg.sha512", 56 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\3.1.5\\microsoft.visualstudio.web.codegeneration.core.3.1.5.nupkg.sha512", 57 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\3.1.5\\microsoft.visualstudio.web.codegeneration.design.3.1.5.nupkg.sha512", 58 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\3.1.5\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.3.1.5.nupkg.sha512", 59 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\3.1.5\\microsoft.visualstudio.web.codegeneration.templating.3.1.5.nupkg.sha512", 60 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\3.1.5\\microsoft.visualstudio.web.codegeneration.utils.3.1.5.nupkg.sha512", 61 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\3.1.5\\microsoft.visualstudio.web.codegenerators.mvc.3.1.5.nupkg.sha512", 62 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", 63 | "C:\\Users\\Fazrin\\.nuget\\packages\\microsoft.win32.registry\\4.5.0\\microsoft.win32.registry.4.5.0.nupkg.sha512", 64 | "C:\\Users\\Fazrin\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", 65 | "C:\\Users\\Fazrin\\.nuget\\packages\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", 66 | "C:\\Users\\Fazrin\\.nuget\\packages\\nuget.frameworks\\4.7.0\\nuget.frameworks.4.7.0.nupkg.sha512", 67 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 68 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 69 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 70 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", 71 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 72 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", 73 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", 74 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", 75 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 76 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 77 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 78 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", 79 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 80 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 81 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 82 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 83 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", 84 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 85 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 86 | "C:\\Users\\Fazrin\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", 87 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", 88 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", 89 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", 90 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", 91 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.collections.immutable\\1.7.1\\system.collections.immutable.1.7.1.nupkg.sha512", 92 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", 93 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", 94 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", 95 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.componentmodel.annotations\\4.7.0\\system.componentmodel.annotations.4.7.0.nupkg.sha512", 96 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", 97 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", 98 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512", 99 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512", 100 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512", 101 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512", 102 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512", 103 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512", 104 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.configuration.configurationmanager\\4.5.0\\system.configuration.configurationmanager.4.5.0.nupkg.sha512", 105 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", 106 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", 107 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.diagnostics.diagnosticsource\\4.7.1\\system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512", 108 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", 109 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", 110 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", 111 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", 112 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", 113 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.identitymodel.tokens.jwt\\5.5.0\\system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512", 114 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", 115 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", 116 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", 117 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", 118 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", 119 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", 120 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", 121 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", 122 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", 123 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", 124 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", 125 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", 126 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", 127 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", 128 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", 129 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", 130 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", 131 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", 132 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", 133 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", 134 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", 135 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", 136 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", 137 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", 138 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.caching\\4.5.0\\system.runtime.caching.4.5.0.nupkg.sha512", 139 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.2\\system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", 140 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", 141 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", 142 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", 143 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", 144 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", 145 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", 146 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", 147 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", 148 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.accesscontrol\\4.5.0\\system.security.accesscontrol.4.5.0.nupkg.sha512", 149 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", 150 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", 151 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", 152 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", 153 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", 154 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", 155 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.5.0\\system.security.cryptography.protecteddata.4.5.0.nupkg.sha512", 156 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", 157 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.permissions\\4.5.0\\system.security.permissions.4.5.0.nupkg.sha512", 158 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.principal.windows\\4.5.0\\system.security.principal.windows.4.5.0.nupkg.sha512", 159 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", 160 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", 161 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", 162 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", 163 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", 164 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", 165 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", 166 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", 167 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", 168 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", 169 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", 170 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", 171 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", 172 | "C:\\Users\\Fazrin\\.nuget\\packages\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" 173 | ], 174 | "logs": [] 175 | } -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/project.packagespec.json: -------------------------------------------------------------------------------- 1 | "restore":{"projectUniqueName":"E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\WebAPI.csproj","projectName":"WebAPI","projectPath":"E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\WebAPI.csproj","outputPath":"E:\\Users\\Fazrin\\Angular-Inline-Editing-with-Asp.Net-Core-Web-API\\WebAPI\\WebAPI\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["netcoreapp2.2"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"netcoreapp2.2":{"targetAlias":"netcoreapp2.2","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"netcoreapp2.2":{"targetAlias":"netcoreapp2.2","dependencies":{"Microsoft.AspNetCore.App":{"suppressParent":"All","target":"Package","version":"[2.2.0, )","autoReferenced":true},"Microsoft.AspNetCore.Cors":{"target":"Package","version":"[2.2.0, )"},"Microsoft.AspNetCore.Razor.Design":{"suppressParent":"All","target":"Package","version":"[2.2.0, )"},"Microsoft.NETCore.App":{"suppressParent":"All","target":"Package","version":"[2.2.0, )","autoReferenced":true},"Microsoft.VisualStudio.Web.CodeGeneration.Design":{"target":"Package","version":"[2.2.0, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json"}} -------------------------------------------------------------------------------- /WebAPI/WebAPI/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 16472295886415110 --------------------------------------------------------------------------------