├── PaymentAPI ├── .vs │ └── PaymentAPI │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ └── .suo ├── PaymentAPI.sln └── PaymentAPI │ ├── Controllers │ ├── PaymentDetailController.cs │ └── WeatherForecastController.cs │ ├── Migrations │ ├── 20201126113224_InitialCreate.Designer.cs │ ├── 20201126113224_InitialCreate.cs │ └── PaymentDetailContextModelSnapshot.cs │ ├── Models │ ├── PaymentDetail.cs │ └── PaymentDetailContext.cs │ ├── PaymentAPI.csproj │ ├── PaymentAPI.csproj.user │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── WeatherForecast.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── net5.0 │ │ ├── Humanizer.dll │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ ├── Microsoft.AspNetCore.Authentication.OpenIdConnect.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.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.Data.Sqlite.dll │ │ ├── Microsoft.DotNet.PlatformAbstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.Sqlite.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyModel.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.OpenApi.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 │ │ ├── PaymentAPI.deps.json │ │ ├── PaymentAPI.dll │ │ ├── PaymentAPI.exe │ │ ├── PaymentAPI.pdb │ │ ├── PaymentAPI.runtimeconfig.dev.json │ │ ├── PaymentAPI.runtimeconfig.json │ │ ├── SQLitePCLRaw.batteries_v2.dll │ │ ├── SQLitePCLRaw.core.dll │ │ ├── SQLitePCLRaw.nativelibrary.dll │ │ ├── SQLitePCLRaw.provider.dynamic_cdecl.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.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.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── 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 │ │ ├── ref │ │ └── PaymentAPI.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── runtimes │ │ ├── alpine-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-arm64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-armel │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-mips64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-musl-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── linux-x86 │ │ │ └── native │ │ │ │ └── libe_sqlite3.so │ │ ├── osx-x64 │ │ │ └── native │ │ │ │ └── libe_sqlite3.dylib │ │ ├── unix │ │ │ └── lib │ │ │ │ └── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ │ ├── lib │ │ │ │ └── net5.0 │ │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ │ └── native │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── e_sqlite3.dll │ │ ├── win-arm64 │ │ │ ├── lib │ │ │ │ └── net5.0 │ │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ │ └── native │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── e_sqlite3.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── e_sqlite3.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── e_sqlite3.dll │ │ └── win │ │ │ └── lib │ │ │ ├── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ └── netstandard2.0 │ │ │ ├── System.Runtime.Caching.dll │ │ │ └── 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 │ └── net5.0 │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ ├── PaymentAPI.AssemblyInfo.cs │ │ ├── PaymentAPI.AssemblyInfoInputs.cache │ │ ├── PaymentAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── PaymentAPI.MvcApplicationPartsAssemblyInfo.cache │ │ ├── PaymentAPI.MvcApplicationPartsAssemblyInfo.cs │ │ ├── PaymentAPI.RazorTargetAssemblyInfo.cache │ │ ├── PaymentAPI.assets.cache │ │ ├── PaymentAPI.csproj.CopyComplete │ │ ├── PaymentAPI.csproj.CoreCompileInputs.cache │ │ ├── PaymentAPI.csproj.FileListAbsolute.txt │ │ ├── PaymentAPI.csprojAssemblyReference.cache │ │ ├── PaymentAPI.dll │ │ ├── PaymentAPI.genruntimeconfig.cache │ │ ├── PaymentAPI.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── PaymentAPI.dll │ │ └── staticwebassets │ │ ├── PaymentAPI.StaticWebAssets.Manifest.cache │ │ └── PaymentAPI.StaticWebAssets.xml │ ├── PaymentAPI.csproj.nuget.dgspec.json │ ├── PaymentAPI.csproj.nuget.g.props │ ├── PaymentAPI.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── PaymentApp ├── .browserslistrc ├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── debug.log ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json ├── karma.conf.js ├── package-lock.json ├── package.json ├── src │ ├── app-structure.txt │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── payment-details │ │ │ ├── payment-detail-form │ │ │ │ ├── payment-detail-form.component.html │ │ │ │ └── payment-detail-form.component.ts │ │ │ ├── payment-details.component.html │ │ │ └── payment-details.component.ts │ │ └── shared │ │ │ ├── payment-detail.model.ts │ │ │ └── payment-detail.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 /PaymentAPI/.vs/PaymentAPI/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/.vs/PaymentAPI/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /PaymentAPI/.vs/PaymentAPI/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/.vs/PaymentAPI/v16/.suo -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30711.63 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PaymentAPI", "PaymentAPI\PaymentAPI.csproj", "{8911788F-BA0D-45C6-8CBD-FBD2CA9B6909}" 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 | {8911788F-BA0D-45C6-8CBD-FBD2CA9B6909}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8911788F-BA0D-45C6-8CBD-FBD2CA9B6909}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8911788F-BA0D-45C6-8CBD-FBD2CA9B6909}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8911788F-BA0D-45C6-8CBD-FBD2CA9B6909}.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 = {F872ECF5-4729-4086-9537-0F3FBCAC3579} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Controllers/PaymentDetailController.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 PaymentAPI.Models; 9 | 10 | namespace PaymentAPI.Controllers 11 | { 12 | [Route("api/[controller]")] 13 | [ApiController] 14 | public class PaymentDetailController : ControllerBase 15 | { 16 | private readonly PaymentDetailContext _context; 17 | 18 | public PaymentDetailController(PaymentDetailContext context) 19 | { 20 | _context = context; 21 | } 22 | 23 | // GET: api/PaymentDetail 24 | [HttpGet] 25 | public async Task>> GetPaymentDetails() 26 | { 27 | return await _context.PaymentDetails.ToListAsync(); 28 | } 29 | 30 | // GET: api/PaymentDetail/5 31 | [HttpGet("{id}")] 32 | public async Task> GetPaymentDetail(int id) 33 | { 34 | var paymentDetail = await _context.PaymentDetails.FindAsync(id); 35 | 36 | if (paymentDetail == null) 37 | { 38 | return NotFound(); 39 | } 40 | 41 | return paymentDetail; 42 | } 43 | 44 | // PUT: api/PaymentDetail/5 45 | // To protect from overposting attacks, see https://go.microsoft.com/fwlink/?linkid=2123754 46 | [HttpPut("{id}")] 47 | public async Task PutPaymentDetail(int id, PaymentDetail paymentDetail) 48 | { 49 | if (id != paymentDetail.PaymentDetailId) 50 | { 51 | return BadRequest(); 52 | } 53 | 54 | _context.Entry(paymentDetail).State = EntityState.Modified; 55 | 56 | try 57 | { 58 | await _context.SaveChangesAsync(); 59 | } 60 | catch (DbUpdateConcurrencyException) 61 | { 62 | if (!PaymentDetailExists(id)) 63 | { 64 | return NotFound(); 65 | } 66 | else 67 | { 68 | throw; 69 | } 70 | } 71 | 72 | return NoContent(); 73 | } 74 | 75 | // POST: api/PaymentDetail 76 | // To protect from overposting attacks, see https://go.microsoft.com/fwlink/?linkid=2123754 77 | [HttpPost] 78 | public async Task> PostPaymentDetail(PaymentDetail paymentDetail) 79 | { 80 | _context.PaymentDetails.Add(paymentDetail); 81 | await _context.SaveChangesAsync(); 82 | 83 | return CreatedAtAction("GetPaymentDetail", new { id = paymentDetail.PaymentDetailId }, paymentDetail); 84 | } 85 | 86 | // DELETE: api/PaymentDetail/5 87 | [HttpDelete("{id}")] 88 | public async Task DeletePaymentDetail(int id) 89 | { 90 | var paymentDetail = await _context.PaymentDetails.FindAsync(id); 91 | if (paymentDetail == null) 92 | { 93 | return NotFound(); 94 | } 95 | 96 | _context.PaymentDetails.Remove(paymentDetail); 97 | await _context.SaveChangesAsync(); 98 | 99 | return NoContent(); 100 | } 101 | 102 | private bool PaymentDetailExists(int id) 103 | { 104 | return _context.PaymentDetails.Any(e => e.PaymentDetailId == id); 105 | } 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using Microsoft.Extensions.Logging; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | 8 | namespace PaymentAPI.Controllers 9 | { 10 | [ApiController] 11 | [Route("[controller]")] 12 | public class WeatherForecastController : ControllerBase 13 | { 14 | private static readonly string[] Summaries = new[] 15 | { 16 | "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" 17 | }; 18 | 19 | private readonly ILogger _logger; 20 | 21 | public WeatherForecastController(ILogger logger) 22 | { 23 | _logger = logger; 24 | } 25 | 26 | [HttpGet] 27 | public IEnumerable Get() 28 | { 29 | var rng = new Random(); 30 | return Enumerable.Range(1, 5).Select(index => new WeatherForecast 31 | { 32 | Date = DateTime.Now.AddDays(index), 33 | TemperatureC = rng.Next(-20, 55), 34 | Summary = Summaries[rng.Next(Summaries.Length)] 35 | }) 36 | .ToArray(); 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Migrations/20201126113224_InitialCreate.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 PaymentAPI.Models; 8 | 9 | namespace PaymentAPI.Migrations 10 | { 11 | [DbContext(typeof(PaymentDetailContext))] 12 | [Migration("20201126113224_InitialCreate")] 13 | partial class InitialCreate 14 | { 15 | protected override void BuildTargetModel(ModelBuilder modelBuilder) 16 | { 17 | #pragma warning disable 612, 618 18 | modelBuilder 19 | .UseIdentityColumns() 20 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 21 | .HasAnnotation("ProductVersion", "5.0.0"); 22 | 23 | modelBuilder.Entity("PaymentAPI.Models.PaymentDetail", b => 24 | { 25 | b.Property("PaymentDetailId") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("int") 28 | .UseIdentityColumn(); 29 | 30 | b.Property("CardNumber") 31 | .HasColumnType("nvarchar(16)"); 32 | 33 | b.Property("CardOwnerName") 34 | .HasColumnType("nvarchar(100)"); 35 | 36 | b.Property("ExpirationDate") 37 | .HasColumnType("nvarchar(5)"); 38 | 39 | b.Property("SecurityCode") 40 | .HasColumnType("nvarchar(3)"); 41 | 42 | b.HasKey("PaymentDetailId"); 43 | 44 | b.ToTable("PaymentDetails"); 45 | }); 46 | #pragma warning restore 612, 618 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Migrations/20201126113224_InitialCreate.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | namespace PaymentAPI.Migrations 4 | { 5 | public partial class InitialCreate : Migration 6 | { 7 | protected override void Up(MigrationBuilder migrationBuilder) 8 | { 9 | migrationBuilder.CreateTable( 10 | name: "PaymentDetails", 11 | columns: table => new 12 | { 13 | PaymentDetailId = table.Column(type: "int", nullable: false) 14 | .Annotation("SqlServer:Identity", "1, 1"), 15 | CardOwnerName = table.Column(type: "nvarchar(100)", nullable: true), 16 | CardNumber = table.Column(type: "nvarchar(16)", nullable: true), 17 | ExpirationDate = table.Column(type: "nvarchar(5)", nullable: true), 18 | SecurityCode = table.Column(type: "nvarchar(3)", nullable: true) 19 | }, 20 | constraints: table => 21 | { 22 | table.PrimaryKey("PK_PaymentDetails", x => x.PaymentDetailId); 23 | }); 24 | } 25 | 26 | protected override void Down(MigrationBuilder migrationBuilder) 27 | { 28 | migrationBuilder.DropTable( 29 | name: "PaymentDetails"); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Migrations/PaymentDetailContextModelSnapshot.cs: -------------------------------------------------------------------------------- 1 | // 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.EntityFrameworkCore.Infrastructure; 4 | using Microsoft.EntityFrameworkCore.Metadata; 5 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 6 | using PaymentAPI.Models; 7 | 8 | namespace PaymentAPI.Migrations 9 | { 10 | [DbContext(typeof(PaymentDetailContext))] 11 | partial class PaymentDetailContextModelSnapshot : ModelSnapshot 12 | { 13 | protected override void BuildModel(ModelBuilder modelBuilder) 14 | { 15 | #pragma warning disable 612, 618 16 | modelBuilder 17 | .UseIdentityColumns() 18 | .HasAnnotation("Relational:MaxIdentifierLength", 128) 19 | .HasAnnotation("ProductVersion", "5.0.0"); 20 | 21 | modelBuilder.Entity("PaymentAPI.Models.PaymentDetail", b => 22 | { 23 | b.Property("PaymentDetailId") 24 | .ValueGeneratedOnAdd() 25 | .HasColumnType("int") 26 | .UseIdentityColumn(); 27 | 28 | b.Property("CardNumber") 29 | .HasColumnType("nvarchar(16)"); 30 | 31 | b.Property("CardOwnerName") 32 | .HasColumnType("nvarchar(100)"); 33 | 34 | b.Property("ExpirationDate") 35 | .HasColumnType("nvarchar(5)"); 36 | 37 | b.Property("SecurityCode") 38 | .HasColumnType("nvarchar(3)"); 39 | 40 | b.HasKey("PaymentDetailId"); 41 | 42 | b.ToTable("PaymentDetails"); 43 | }); 44 | #pragma warning restore 612, 618 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Models/PaymentDetail.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 PaymentAPI.Models 9 | { 10 | public class PaymentDetail 11 | { 12 | [Key] 13 | public int PaymentDetailId { get; set; } 14 | 15 | [Column(TypeName ="nvarchar(100)")] 16 | public string CardOwnerName { get; set; } 17 | 18 | [Column(TypeName = "nvarchar(16)")] 19 | public string CardNumber { get; set; } 20 | 21 | [Column(TypeName = "nvarchar(5)")] 22 | public string ExpirationDate { get; set; } 23 | 24 | [Column(TypeName = "nvarchar(3)")] 25 | public string SecurityCode { get; set; } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Models/PaymentDetailContext.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 PaymentAPI.Models 8 | { 9 | public class PaymentDetailContext:DbContext 10 | { 11 | public PaymentDetailContext(DbContextOptions options):base(options) 12 | { 13 | 14 | } 15 | 16 | public DbSet PaymentDetails { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/PaymentAPI.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | all 15 | runtime; build; native; contentfiles; analyzers; buildtransitive 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/PaymentAPI.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ApiControllerWithContextScaffolder 5 | root/Common/Api 6 | 600 7 | True 8 | False 9 | True 10 | 11 | PaymentAPI.Models.PaymentDetailContext 12 | False 13 | 14 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.Extensions.Configuration; 3 | using Microsoft.Extensions.Hosting; 4 | using Microsoft.Extensions.Logging; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Linq; 8 | using System.Threading.Tasks; 9 | 10 | namespace PaymentAPI 11 | { 12 | public class Program 13 | { 14 | public static void Main(string[] args) 15 | { 16 | CreateHostBuilder(args).Build().Run(); 17 | } 18 | 19 | public static IHostBuilder CreateHostBuilder(string[] args) => 20 | Host.CreateDefaultBuilder(args) 21 | .ConfigureWebHostDefaults(webBuilder => 22 | { 23 | webBuilder.UseStartup(); 24 | }); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/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:61236", 8 | "sslPort": 0 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "swagger", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "PaymentAPI": { 21 | "commandName": "Project", 22 | "dotnetRunMessages": "true", 23 | "launchBrowser": true, 24 | "launchUrl": "swagger", 25 | "applicationUrl": "http://localhost:5000", 26 | "environmentVariables": { 27 | "ASPNETCORE_ENVIRONMENT": "Development" 28 | } 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/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 Microsoft.Extensions.Hosting; 8 | using Microsoft.Extensions.Logging; 9 | using Microsoft.OpenApi.Models; 10 | using PaymentAPI.Models; 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | 16 | namespace PaymentAPI 17 | { 18 | public class Startup 19 | { 20 | public Startup(IConfiguration configuration) 21 | { 22 | Configuration = configuration; 23 | } 24 | 25 | public IConfiguration Configuration { get; } 26 | 27 | // This method gets called by the runtime. Use this method to add services to the container. 28 | public void ConfigureServices(IServiceCollection services) 29 | { 30 | 31 | services.AddControllers(); 32 | services.AddSwaggerGen(c => 33 | { 34 | c.SwaggerDoc("v1", new OpenApiInfo { Title = "PaymentAPI", Version = "v1" }); 35 | }); 36 | 37 | services.AddDbContext(options => 38 | options.UseSqlServer(Configuration.GetConnectionString("DevConnection"))); 39 | 40 | services.AddCors(); 41 | } 42 | 43 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 44 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 45 | { 46 | app.UseCors(options => 47 | options.WithOrigins("http://localhost:4200") 48 | .AllowAnyMethod() 49 | .AllowAnyHeader()); 50 | 51 | if (env.IsDevelopment()) 52 | { 53 | app.UseDeveloperExceptionPage(); 54 | app.UseSwagger(); 55 | app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "PaymentAPI v1")); 56 | } 57 | 58 | app.UseRouting(); 59 | 60 | app.UseAuthorization(); 61 | 62 | app.UseEndpoints(endpoints => 63 | { 64 | endpoints.MapControllers(); 65 | }); 66 | } 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace PaymentAPI 4 | { 5 | public class WeatherForecast 6 | { 7 | public DateTime Date { get; set; } 8 | 9 | public int TemperatureC { get; set; } 10 | 11 | public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); 12 | 13 | public string Summary { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "ConnectionStrings": { 11 | "DevConnection": "Server=(local)\\sqlexpress;Database=PaymentDetailDB;Trusted_Connection=True;MultipleActiveResultSets=True;" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Sqlite.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.exe -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.pdb -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\Shamseer\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\Shamseer\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/PaymentAPI.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "5.0.0" 7 | }, 8 | "configProperties": { 9 | "System.GC.Server": true, 10 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.nativelibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.nativelibrary.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "ConnectionStrings": { 11 | "DevConnection": "Server=(local)\\sqlexpress;Database=PaymentDetailDB;Trusted_Connection=True;MultipleActiveResultSets=True;" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ref/PaymentAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ref/PaymentAPI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-armel/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-armel/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-x86/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/linux-x86/native/libe_sqlite3.so -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm/native/e_sqlite3.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-arm64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x86/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win-x86/native/e_sqlite3.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.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("PaymentAPI")] 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("PaymentAPI")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("PaymentAPI")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 50910147ffcea1612d75a9060f7ee0ba3c106d92 2 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net5.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.PublishSingleFile = 7 | build_property.IncludeAllContentForSelfExtract = 8 | build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows 9 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.MvcApplicationPartsAssemblyInfo.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.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] 15 | 16 | // Generated by the MSBuild WriteCodeFragment class. 17 | 18 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 0d1234478972a34590869a32a2b90367ff55c432 2 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.assets.cache -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.csproj.CopyComplete -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2aebd94239a77265382581875577d0bd9171d464 2 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\appsettings.Development.json 2 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\appsettings.json 3 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\PaymentAPI.exe 4 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\PaymentAPI.deps.json 5 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\PaymentAPI.runtimeconfig.json 6 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\PaymentAPI.runtimeconfig.dev.json 7 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\PaymentAPI.dll 8 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ref\PaymentAPI.dll 9 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\PaymentAPI.pdb 10 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll 11 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll 12 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.IdentityModel.JsonWebTokens.dll 13 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Logging.dll 14 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.dll 15 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll 16 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Tokens.dll 17 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.OpenApi.dll 18 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll 19 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll 20 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll 21 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.IdentityModel.Tokens.Jwt.dll 22 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.csprojAssemblyReference.cache 23 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.GeneratedMSBuildEditorConfig.editorconfig 24 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.AssemblyInfoInputs.cache 25 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.AssemblyInfo.cs 26 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.csproj.CoreCompileInputs.cache 27 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.MvcApplicationPartsAssemblyInfo.cs 28 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.MvcApplicationPartsAssemblyInfo.cache 29 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\staticwebassets\PaymentAPI.StaticWebAssets.Manifest.cache 30 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\staticwebassets\PaymentAPI.StaticWebAssets.xml 31 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\scopedcss\bundle\PaymentAPI.styles.css 32 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.RazorTargetAssemblyInfo.cache 33 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.csproj.CopyComplete 34 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.dll 35 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\ref\PaymentAPI.dll 36 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.pdb 37 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\obj\Debug\net5.0\PaymentAPI.genruntimeconfig.cache 38 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Humanizer.dll 39 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.Data.SqlClient.dll 40 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.dll 41 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Abstractions.dll 42 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Design.dll 43 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Relational.dll 44 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.SqlServer.dll 45 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.Identity.Client.dll 46 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Configuration.ConfigurationManager.dll 47 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Runtime.Caching.dll 48 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Security.Cryptography.ProtectedData.dll 49 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll 50 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll 51 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll 52 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.pdb 53 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll 54 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.pdb 55 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll 56 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.pdb 57 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll 58 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.pdb 59 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll 60 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll 61 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.Data.Sqlite.dll 62 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.DotNet.PlatformAbstractions.dll 63 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Sqlite.dll 64 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.Extensions.DependencyModel.dll 65 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\SQLitePCLRaw.batteries_v2.dll 66 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\SQLitePCLRaw.nativelibrary.dll 67 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\SQLitePCLRaw.core.dll 68 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\SQLitePCLRaw.provider.dynamic_cdecl.dll 69 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\alpine-x64\native\libe_sqlite3.so 70 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\linux-arm\native\libe_sqlite3.so 71 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\linux-arm64\native\libe_sqlite3.so 72 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\linux-armel\native\libe_sqlite3.so 73 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\linux-mips64\native\libe_sqlite3.so 74 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\linux-musl-x64\native\libe_sqlite3.so 75 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\linux-x64\native\libe_sqlite3.so 76 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\linux-x86\native\libe_sqlite3.so 77 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\osx-x64\native\libe_sqlite3.dylib 78 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm\native\e_sqlite3.dll 79 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm64\native\e_sqlite3.dll 80 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-x64\native\e_sqlite3.dll 81 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-x86\native\e_sqlite3.dll 82 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.AspNetCore.Razor.Language.dll 83 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.Bcl.AsyncInterfaces.dll 84 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll 85 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll 86 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll 87 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.Razor.dll 88 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.Workspaces.dll 89 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.dll 90 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll 91 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll 92 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\dotnet-aspnet-codegenerator-design.dll 93 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll 94 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll 95 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll 96 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll 97 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\Newtonsoft.Json.dll 98 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Composition.AttributedModel.dll 99 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Composition.Convention.dll 100 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Composition.Hosting.dll 101 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Composition.Runtime.dll 102 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\System.Composition.TypedParts.dll 103 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll 104 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll 105 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll 106 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll 107 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll 108 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll 109 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll 110 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll 111 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll 112 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll 113 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll 114 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll 115 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll 116 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll 117 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll 118 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll 119 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll 120 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll 121 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll 122 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll 123 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll 124 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll 125 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll 126 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll 127 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll 128 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll 129 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 130 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 131 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 132 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 133 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 134 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 135 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 136 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 137 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 138 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 139 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 140 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 141 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 142 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll 143 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll 144 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll 145 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll 146 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll 147 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll 148 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll 149 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll 150 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll 151 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll 152 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll 153 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll 154 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll 155 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm\lib\net5.0\dotnet-aspnet-codegenerator-design.exe 156 | C:\CodAffection Yt\.Net API CRUD\project\PaymentAPI\PaymentAPI\bin\Debug\net5.0\runtimes\win-arm64\lib\net5.0\dotnet-aspnet-codegenerator-design.exe 157 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | d8e43cecfeba479d774e9a4975c72a9ddb2d646e 2 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/PaymentAPI.pdb -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/ref/PaymentAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/ref/PaymentAPI.dll -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/staticwebassets/PaymentAPI.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentAPI/PaymentAPI/obj/Debug/net5.0/staticwebassets/PaymentAPI.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/Debug/net5.0/staticwebassets/PaymentAPI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/PaymentAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\CodAffection Yt\\.Net API CRUD\\project\\PaymentAPI\\PaymentAPI\\PaymentAPI.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\CodAffection Yt\\.Net API CRUD\\project\\PaymentAPI\\PaymentAPI\\PaymentAPI.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\CodAffection Yt\\.Net API CRUD\\project\\PaymentAPI\\PaymentAPI\\PaymentAPI.csproj", 11 | "projectName": "PaymentAPI", 12 | "projectPath": "C:\\CodAffection Yt\\.Net API CRUD\\project\\PaymentAPI\\PaymentAPI\\PaymentAPI.csproj", 13 | "packagesPath": "C:\\Users\\Shamseer\\.nuget\\packages\\", 14 | "outputPath": "C:\\CodAffection Yt\\.Net API CRUD\\project\\PaymentAPI\\PaymentAPI\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 18 | ], 19 | "configFilePaths": [ 20 | "C:\\Users\\Shamseer\\AppData\\Roaming\\NuGet\\NuGet.Config", 21 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 22 | ], 23 | "originalTargetFrameworks": [ 24 | "net5.0" 25 | ], 26 | "sources": { 27 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 28 | "https://api.nuget.org/v3/index.json": {} 29 | }, 30 | "frameworks": { 31 | "net5.0": { 32 | "targetAlias": "net5.0", 33 | "projectReferences": {} 34 | } 35 | }, 36 | "warningProperties": { 37 | "warnAsError": [ 38 | "NU1605" 39 | ] 40 | } 41 | }, 42 | "frameworks": { 43 | "net5.0": { 44 | "targetAlias": "net5.0", 45 | "dependencies": { 46 | "Microsoft.AspNetCore.Authentication.JwtBearer": { 47 | "target": "Package", 48 | "version": "[5.0.0, )", 49 | "noWarn": [ 50 | "NU1605" 51 | ] 52 | }, 53 | "Microsoft.AspNetCore.Authentication.OpenIdConnect": { 54 | "target": "Package", 55 | "version": "[5.0.0, )", 56 | "noWarn": [ 57 | "NU1605" 58 | ] 59 | }, 60 | "Microsoft.EntityFrameworkCore": { 61 | "target": "Package", 62 | "version": "[5.0.0, )" 63 | }, 64 | "Microsoft.EntityFrameworkCore.SqlServer": { 65 | "target": "Package", 66 | "version": "[5.0.0, )" 67 | }, 68 | "Microsoft.EntityFrameworkCore.Sqlite": { 69 | "target": "Package", 70 | "version": "[5.0.0, )" 71 | }, 72 | "Microsoft.EntityFrameworkCore.Tools": { 73 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 74 | "suppressParent": "All", 75 | "target": "Package", 76 | "version": "[5.0.0, )" 77 | }, 78 | "Microsoft.VisualStudio.Web.CodeGeneration.Design": { 79 | "target": "Package", 80 | "version": "[5.0.0, )" 81 | }, 82 | "Microsoft.VisualStudio.Web.CodeGeneration.Utils": { 83 | "target": "Package", 84 | "version": "[5.0.0, )" 85 | }, 86 | "Swashbuckle.AspNetCore": { 87 | "target": "Package", 88 | "version": "[5.6.3, )" 89 | } 90 | }, 91 | "imports": [ 92 | "net461", 93 | "net462", 94 | "net47", 95 | "net471", 96 | "net472", 97 | "net48" 98 | ], 99 | "assetTargetFallback": true, 100 | "warn": true, 101 | "frameworkReferences": { 102 | "Microsoft.AspNetCore.App": { 103 | "privateAssets": "none" 104 | }, 105 | "Microsoft.NETCore.App": { 106 | "privateAssets": "all" 107 | } 108 | }, 109 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.100\\RuntimeIdentifierGraph.json" 110 | } 111 | } 112 | } 113 | } 114 | } -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/PaymentAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Shamseer\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.8.0 11 | 12 | 13 | 14 | 15 | 16 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | C:\Users\Shamseer\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 25 | C:\Users\Shamseer\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0 26 | C:\Users\Shamseer\.nuget\packages\microsoft.entityframeworkcore.tools\5.0.0 27 | 28 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/PaymentAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /PaymentAPI/PaymentAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "lBp/nVR5rP0KT2V1HYmp9qra0CAq8G8Bt1WIHx5gGM3DdMI5ByrP/brPzvXnZ/5Yzsj8Dn7t7VHC8prBy7k2iw==", 4 | "success": true, 5 | "projectFilePath": "C:\\CodAffection Yt\\.Net API CRUD\\project\\PaymentAPI\\PaymentAPI\\PaymentAPI.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\Shamseer\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512", 8 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.0\\microsoft.aspnetcore.authentication.jwtbearer.5.0.0.nupkg.sha512", 9 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.aspnetcore.authentication.openidconnect\\5.0.0\\microsoft.aspnetcore.authentication.openidconnect.5.0.0.nupkg.sha512", 10 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", 11 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", 12 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.0\\microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512", 13 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", 14 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.0\\microsoft.bcl.asyncinterfaces.1.1.0.nupkg.sha512", 15 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", 16 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.common\\3.7.0\\microsoft.codeanalysis.common.3.7.0.nupkg.sha512", 17 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.7.0\\microsoft.codeanalysis.csharp.3.7.0.nupkg.sha512", 18 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.7.0\\microsoft.codeanalysis.csharp.workspaces.3.7.0.nupkg.sha512", 19 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.0\\microsoft.codeanalysis.razor.5.0.0.nupkg.sha512", 20 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.7.0\\microsoft.codeanalysis.workspaces.common.3.7.0.nupkg.sha512", 21 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", 22 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.data.sqlclient\\2.0.1\\microsoft.data.sqlclient.2.0.1.nupkg.sha512", 23 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.0.1\\microsoft.data.sqlclient.sni.runtime.2.0.1.nupkg.sha512", 24 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.data.sqlite.core\\5.0.0\\microsoft.data.sqlite.core.5.0.0.nupkg.sha512", 25 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.dotnet.platformabstractions\\3.1.6\\microsoft.dotnet.platformabstractions.3.1.6.nupkg.sha512", 26 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.0\\microsoft.entityframeworkcore.5.0.0.nupkg.sha512", 27 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.0\\microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512", 28 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.0\\microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512", 29 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.design\\5.0.0\\microsoft.entityframeworkcore.design.5.0.0.nupkg.sha512", 30 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.0\\microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512", 31 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\5.0.0\\microsoft.entityframeworkcore.sqlite.5.0.0.nupkg.sha512", 32 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\5.0.0\\microsoft.entityframeworkcore.sqlite.core.5.0.0.nupkg.sha512", 33 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\5.0.0\\microsoft.entityframeworkcore.sqlserver.5.0.0.nupkg.sha512", 34 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\5.0.0\\microsoft.entityframeworkcore.tools.5.0.0.nupkg.sha512", 35 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", 36 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", 37 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", 38 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", 39 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512", 40 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", 41 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", 42 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", 43 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", 44 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", 45 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", 46 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identity.client\\4.14.0\\microsoft.identity.client.4.14.0.nupkg.sha512", 47 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512", 48 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512", 49 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512", 50 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512", 51 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512", 52 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", 53 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.netcore.targets\\1.1.3\\microsoft.netcore.targets.1.1.3.nupkg.sha512", 54 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", 55 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\5.0.0\\microsoft.visualstudio.web.codegeneration.5.0.0.nupkg.sha512", 56 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\5.0.0\\microsoft.visualstudio.web.codegeneration.contracts.5.0.0.nupkg.sha512", 57 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\5.0.0\\microsoft.visualstudio.web.codegeneration.core.5.0.0.nupkg.sha512", 58 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\5.0.0\\microsoft.visualstudio.web.codegeneration.design.5.0.0.nupkg.sha512", 59 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\5.0.0\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.0.nupkg.sha512", 60 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.0\\microsoft.visualstudio.web.codegeneration.templating.5.0.0.nupkg.sha512", 61 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.0\\microsoft.visualstudio.web.codegeneration.utils.5.0.0.nupkg.sha512", 62 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.0\\microsoft.visualstudio.web.codegenerators.mvc.5.0.0.nupkg.sha512", 63 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", 64 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", 65 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\11.0.2\\newtonsoft.json.11.0.2.nupkg.sha512", 66 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", 67 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.0.4\\sqlitepclraw.bundle_e_sqlite3.2.0.4.nupkg.sha512", 68 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.core\\2.0.4\\sqlitepclraw.core.2.0.4.nupkg.sha512", 69 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.0.4\\sqlitepclraw.lib.e_sqlite3.2.0.4.nupkg.sha512", 70 | "C:\\Users\\Shamseer\\.nuget\\packages\\sqlitepclraw.provider.dynamic_cdecl\\2.0.4\\sqlitepclraw.provider.dynamic_cdecl.2.0.4.nupkg.sha512", 71 | "C:\\Users\\Shamseer\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", 72 | "C:\\Users\\Shamseer\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", 73 | "C:\\Users\\Shamseer\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", 74 | "C:\\Users\\Shamseer\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", 75 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", 76 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", 77 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", 78 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", 79 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", 80 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", 81 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", 82 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", 83 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", 84 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512", 85 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512", 86 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512", 87 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512", 88 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512", 89 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512", 90 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512", 91 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", 92 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", 93 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", 94 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", 95 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", 96 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", 97 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", 98 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512", 99 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", 100 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", 101 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", 102 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", 103 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", 104 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", 105 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", 106 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", 107 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", 108 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.private.datacontractserialization\\4.3.0\\system.private.datacontractserialization.4.3.0.nupkg.sha512", 109 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.private.uri\\4.3.2\\system.private.uri.4.3.2.nupkg.sha512", 110 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", 111 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", 112 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", 113 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", 114 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", 115 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", 116 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", 117 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", 118 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", 119 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", 120 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512", 121 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.0\\system.runtime.compilerservices.unsafe.4.7.0.nupkg.sha512", 122 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", 123 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", 124 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", 125 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", 126 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.json\\4.3.0\\system.runtime.serialization.json.4.3.0.nupkg.sha512", 127 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", 128 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", 129 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", 130 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", 131 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512", 132 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", 133 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", 134 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.security.securestring\\4.3.0\\system.security.securestring.4.3.0.nupkg.sha512", 135 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", 136 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512", 137 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", 138 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", 139 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", 140 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", 141 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", 142 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.3\\system.threading.tasks.extensions.4.5.3.nupkg.sha512", 143 | "C:\\Users\\Shamseer\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", 144 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", 145 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", 146 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", 147 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmlserializer\\4.3.0\\system.xml.xmlserializer.4.3.0.nupkg.sha512" 148 | ], 149 | "logs": [] 150 | } -------------------------------------------------------------------------------- /PaymentApp/.browserslistrc: -------------------------------------------------------------------------------- 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 | # For the full list of supported browsers by the Angular framework, please see: 6 | # https://angular.io/guide/browser-support 7 | 8 | # You can see what browsers were selected by your queries by running: 9 | # npx browserslist 10 | 11 | last 1 Chrome version 12 | last 1 Firefox version 13 | last 2 Edge major versions 14 | last 2 Safari major versions 15 | last 2 iOS major versions 16 | Firefox ESR 17 | not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line. 18 | -------------------------------------------------------------------------------- /PaymentApp/.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 | [*.ts] 12 | quote_type = single 13 | 14 | [*.md] 15 | max_line_length = off 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /PaymentApp/.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 | -------------------------------------------------------------------------------- /PaymentApp/README.md: -------------------------------------------------------------------------------- 1 | # PaymentApp 2 | 3 | This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 11.0.1. 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 Overview and Command Reference](https://angular.io/cli) page. 28 | -------------------------------------------------------------------------------- /PaymentApp/angular.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json", 3 | "version": 1, 4 | "newProjectRoot": "projects", 5 | "projects": { 6 | "PaymentApp": { 7 | "projectType": "application", 8 | "schematics": { 9 | "@schematics/angular:application": { 10 | "strict": true 11 | } 12 | }, 13 | "root": "", 14 | "sourceRoot": "src", 15 | "prefix": "app", 16 | "architect": { 17 | "build": { 18 | "builder": "@angular-devkit/build-angular:browser", 19 | "options": { 20 | "outputPath": "dist/PaymentApp", 21 | "index": "src/index.html", 22 | "main": "src/main.ts", 23 | "polyfills": "src/polyfills.ts", 24 | "tsConfig": "tsconfig.app.json", 25 | "aot": true, 26 | "assets": [ 27 | "src/favicon.ico", 28 | "src/assets" 29 | ], 30 | "styles": [ 31 | "src/styles.css", 32 | "node_modules/ngx-toastr/toastr.css" 33 | ], 34 | "scripts": [] 35 | }, 36 | "configurations": { 37 | "production": { 38 | "fileReplacements": [ 39 | { 40 | "replace": "src/environments/environment.ts", 41 | "with": "src/environments/environment.prod.ts" 42 | } 43 | ], 44 | "optimization": true, 45 | "outputHashing": "all", 46 | "sourceMap": false, 47 | "namedChunks": false, 48 | "extractLicenses": true, 49 | "vendorChunk": false, 50 | "buildOptimizer": true, 51 | "budgets": [ 52 | { 53 | "type": "initial", 54 | "maximumWarning": "500kb", 55 | "maximumError": "1mb" 56 | }, 57 | { 58 | "type": "anyComponentStyle", 59 | "maximumWarning": "2kb", 60 | "maximumError": "4kb" 61 | } 62 | ] 63 | } 64 | } 65 | }, 66 | "serve": { 67 | "builder": "@angular-devkit/build-angular:dev-server", 68 | "options": { 69 | "browserTarget": "PaymentApp:build" 70 | }, 71 | "configurations": { 72 | "production": { 73 | "browserTarget": "PaymentApp:build:production" 74 | } 75 | } 76 | }, 77 | "extract-i18n": { 78 | "builder": "@angular-devkit/build-angular:extract-i18n", 79 | "options": { 80 | "browserTarget": "PaymentApp:build" 81 | } 82 | }, 83 | "test": { 84 | "builder": "@angular-devkit/build-angular:karma", 85 | "options": { 86 | "main": "src/test.ts", 87 | "polyfills": "src/polyfills.ts", 88 | "tsConfig": "tsconfig.spec.json", 89 | "karmaConfig": "karma.conf.js", 90 | "assets": [ 91 | "src/favicon.ico", 92 | "src/assets" 93 | ], 94 | "styles": [ 95 | "src/styles.css" 96 | ], 97 | "scripts": [] 98 | } 99 | }, 100 | "lint": { 101 | "builder": "@angular-devkit/build-angular:tslint", 102 | "options": { 103 | "tsConfig": [ 104 | "tsconfig.app.json", 105 | "tsconfig.spec.json", 106 | "e2e/tsconfig.json" 107 | ], 108 | "exclude": [ 109 | "**/node_modules/**" 110 | ] 111 | } 112 | }, 113 | "e2e": { 114 | "builder": "@angular-devkit/build-angular:protractor", 115 | "options": { 116 | "protractorConfig": "e2e/protractor.conf.js", 117 | "devServerTarget": "PaymentApp:serve" 118 | }, 119 | "configurations": { 120 | "production": { 121 | "devServerTarget": "PaymentApp:serve:production" 122 | } 123 | } 124 | } 125 | } 126 | } 127 | }, 128 | "defaultProject": "PaymentApp", 129 | "cli": { 130 | "analytics": false 131 | } 132 | } -------------------------------------------------------------------------------- /PaymentApp/debug.log: -------------------------------------------------------------------------------- 1 | [1128/065832.997:ERROR:directory_reader_win.cc(43)] FindFirstFile: The system cannot find the path specified. (0x3) 2 | -------------------------------------------------------------------------------- /PaymentApp/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, StacktraceOption } = 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 | SELENIUM_PROMISE_MANAGER: false, 20 | baseUrl: 'http://localhost:4200/', 21 | framework: 'jasmine', 22 | jasmineNodeOpts: { 23 | showColors: true, 24 | defaultTimeoutInterval: 30000, 25 | print: function() {} 26 | }, 27 | onPrepare() { 28 | require('ts-node').register({ 29 | project: require('path').join(__dirname, './tsconfig.json') 30 | }); 31 | jasmine.getEnv().addReporter(new SpecReporter({ 32 | spec: { 33 | displayStacktrace: StacktraceOption.PRETTY 34 | } 35 | })); 36 | } 37 | }; -------------------------------------------------------------------------------- /PaymentApp/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', async () => { 12 | await page.navigateTo(); 13 | expect(await page.getTitleText()).toEqual('PaymentApp app is running!'); 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 | -------------------------------------------------------------------------------- /PaymentApp/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | async navigateTo(): Promise { 5 | return browser.get(browser.baseUrl); 6 | } 7 | 8 | async getTitleText(): Promise { 9 | return element(by.css('app-root .content span')).getText(); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /PaymentApp/e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "extends": "../tsconfig.json", 4 | "compilerOptions": { 5 | "outDir": "../out-tsc/e2e", 6 | "module": "commonjs", 7 | "target": "es2018", 8 | "types": [ 9 | "jasmine", 10 | "node" 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /PaymentApp/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'), 13 | require('@angular-devkit/build-angular/plugins/karma') 14 | ], 15 | client: { 16 | clearContext: false // leave Jasmine Spec Runner output visible in browser 17 | }, 18 | coverageReporter: { 19 | dir: require('path').join(__dirname, './coverage/PaymentApp'), 20 | subdir: '.', 21 | reporters: [ 22 | { type: 'html' }, 23 | { type: 'text-summary' } 24 | ] 25 | }, 26 | reporters: ['progress', 'kjhtml'], 27 | port: 9876, 28 | colors: true, 29 | logLevel: config.LOG_INFO, 30 | autoWatch: true, 31 | browsers: ['Chrome'], 32 | singleRun: false, 33 | restartOnFileChange: true 34 | }); 35 | }; 36 | -------------------------------------------------------------------------------- /PaymentApp/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "payment-app", 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": "~11.0.0", 15 | "@angular/common": "~11.0.0", 16 | "@angular/compiler": "~11.0.0", 17 | "@angular/core": "~11.0.0", 18 | "@angular/forms": "~11.0.0", 19 | "@angular/platform-browser": "~11.0.0", 20 | "@angular/platform-browser-dynamic": "~11.0.0", 21 | "@angular/router": "~11.0.0", 22 | "ngx-toastr": "^13.1.0", 23 | "rxjs": "~6.6.0", 24 | "tslib": "^2.0.0", 25 | "zone.js": "~0.10.2" 26 | }, 27 | "devDependencies": { 28 | "@angular-devkit/build-angular": "~0.1100.1", 29 | "@angular/cli": "~11.0.1", 30 | "@angular/compiler-cli": "~11.0.0", 31 | "@types/jasmine": "~3.6.0", 32 | "@types/node": "^12.11.1", 33 | "codelyzer": "^6.0.0", 34 | "jasmine-core": "~3.6.0", 35 | "jasmine-spec-reporter": "~5.0.0", 36 | "karma": "~5.1.0", 37 | "karma-chrome-launcher": "~3.1.0", 38 | "karma-coverage": "~2.0.3", 39 | "karma-jasmine": "~4.0.0", 40 | "karma-jasmine-html-reporter": "^1.5.0", 41 | "protractor": "~7.0.0", 42 | "ts-node": "~8.3.0", 43 | "tslint": "~6.1.0", 44 | "typescript": "~4.0.2" 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /PaymentApp/src/app-structure.txt: -------------------------------------------------------------------------------- 1 | ● src 2 | +---● app 3 | | +--● payment-details 4 | | | |--payment-details.component.ts|.html 5 | | | +--● payment-detail-form 6 | | | | |--payment-detail-form.component.ts|.html 7 | | | 8 | | +--● shared 9 | | | |--payment-detail.service.ts 10 | | | |--payment-detail.model.ts 11 | | | 12 | | |--app.module.ts 13 | | 14 | |--index.html (cdn path for bootstrap & fa icons) -------------------------------------------------------------------------------- /PaymentApp/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentApp/src/app/app.component.css -------------------------------------------------------------------------------- /PaymentApp/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
-------------------------------------------------------------------------------- /PaymentApp/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- 1 | import { TestBed } from '@angular/core/testing'; 2 | import { AppComponent } from './app.component'; 3 | 4 | describe('AppComponent', () => { 5 | beforeEach(async () => { 6 | await TestBed.configureTestingModule({ 7 | declarations: [ 8 | AppComponent 9 | ], 10 | }).compileComponents(); 11 | }); 12 | 13 | it('should create the app', () => { 14 | const fixture = TestBed.createComponent(AppComponent); 15 | const app = fixture.componentInstance; 16 | expect(app).toBeTruthy(); 17 | }); 18 | 19 | it(`should have as title 'PaymentApp'`, () => { 20 | const fixture = TestBed.createComponent(AppComponent); 21 | const app = fixture.componentInstance; 22 | expect(app.title).toEqual('PaymentApp'); 23 | }); 24 | 25 | it('should render title', () => { 26 | const fixture = TestBed.createComponent(AppComponent); 27 | fixture.detectChanges(); 28 | const compiled = fixture.nativeElement; 29 | expect(compiled.querySelector('.content span').textContent).toContain('PaymentApp app is running!'); 30 | }); 31 | }); 32 | -------------------------------------------------------------------------------- /PaymentApp/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 = 'PaymentApp'; 10 | } 11 | -------------------------------------------------------------------------------- /PaymentApp/src/app/app.module.ts: -------------------------------------------------------------------------------- 1 | import { BrowserModule } from '@angular/platform-browser'; 2 | import { NgModule } from '@angular/core'; 3 | import { FormsModule } from "@angular/forms"; 4 | import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; 5 | import { ToastrModule } from 'ngx-toastr'; 6 | 7 | import { AppComponent } from './app.component'; 8 | import { PaymentDetailsComponent } from './payment-details/payment-details.component'; 9 | import { PaymentDetailFormComponent } from './payment-details/payment-detail-form/payment-detail-form.component'; 10 | import { HttpClientModule } from '@angular/common/http'; 11 | 12 | @NgModule({ 13 | declarations: [ 14 | AppComponent, 15 | PaymentDetailsComponent, 16 | PaymentDetailFormComponent 17 | ], 18 | imports: [ 19 | BrowserModule, 20 | FormsModule, 21 | HttpClientModule, 22 | BrowserAnimationsModule, 23 | ToastrModule.forRoot() 24 | ], 25 | providers: [], 26 | bootstrap: [AppComponent] 27 | }) 28 | export class AppModule { } 29 | -------------------------------------------------------------------------------- /PaymentApp/src/app/payment-details/payment-detail-form/payment-detail-form.component.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | 5 | 8 |
9 |
10 | 11 | 14 |
15 |
16 |
17 | 18 | 21 |
22 |
23 | 24 | 27 |
28 |
29 |
30 | 31 |
32 |
-------------------------------------------------------------------------------- /PaymentApp/src/app/payment-details/payment-detail-form/payment-detail-form.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import { PaymentDetailService } from 'src/app/shared/payment-detail.service'; 3 | import { NgForm } from '@angular/forms'; 4 | import { PaymentDetail } from 'src/app/shared/payment-detail.model'; 5 | import { ToastrService } from 'ngx-toastr'; 6 | 7 | @Component({ 8 | selector: 'app-payment-detail-form', 9 | templateUrl: './payment-detail-form.component.html', 10 | styles: [ 11 | ] 12 | }) 13 | export class PaymentDetailFormComponent implements OnInit { 14 | 15 | constructor(public service: PaymentDetailService, 16 | private toastr: ToastrService) { } 17 | 18 | ngOnInit(): void { 19 | } 20 | 21 | onSubmit(form: NgForm) { 22 | if (this.service.formData.paymentDetailId == 0) 23 | this.insertRecord(form); 24 | else 25 | this.updateRecord(form); 26 | } 27 | 28 | insertRecord(form: NgForm) { 29 | this.service.postPaymentDetail().subscribe( 30 | res => { 31 | this.resetForm(form); 32 | this.service.refreshList(); 33 | this.toastr.success('Submitted successfully', 'Payment Detail Register') 34 | }, 35 | err => { console.log(err); } 36 | ); 37 | } 38 | 39 | updateRecord(form: NgForm) { 40 | this.service.putPaymentDetail().subscribe( 41 | res => { 42 | this.resetForm(form); 43 | this.service.refreshList(); 44 | this.toastr.info('Updated successfully', 'Payment Detail Register') 45 | }, 46 | err => { console.log(err); } 47 | ); 48 | } 49 | 50 | 51 | resetForm(form: NgForm) { 52 | form.form.reset(); 53 | this.service.formData = new PaymentDetail(); 54 | } 55 | 56 | } 57 | -------------------------------------------------------------------------------- /PaymentApp/src/app/payment-details/payment-details.component.html: -------------------------------------------------------------------------------- 1 |
2 |

Payment Detail Register

3 |
4 | 5 |
6 |
7 | 8 |
9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 28 | 29 |
Card OwnerCard NumberExp. Date
{{pd.cardOwnerName}}{{pd.cardNumber}}{{pd.expirationDate}} 25 | 26 |
30 |
31 |
32 | -------------------------------------------------------------------------------- /PaymentApp/src/app/payment-details/payment-details.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | import { PaymentDetailService } from '../shared/payment-detail.service'; 3 | import { PaymentDetail } from '../shared/payment-detail.model'; 4 | import { ToastrService } from 'ngx-toastr'; 5 | 6 | @Component({ 7 | selector: 'app-payment-details', 8 | templateUrl: './payment-details.component.html', 9 | styles: [ 10 | ] 11 | }) 12 | export class PaymentDetailsComponent implements OnInit { 13 | 14 | constructor(public service: PaymentDetailService, 15 | private toastr: ToastrService) { } 16 | 17 | ngOnInit(): void { 18 | this.service.refreshList(); 19 | } 20 | 21 | populateForm(selectedRecord: PaymentDetail) { 22 | this.service.formData = Object.assign({}, selectedRecord); 23 | } 24 | 25 | onDelete(id: number) { 26 | if (confirm('Are you sure to delete this record?')) { 27 | this.service.deletePaymentDetail(id) 28 | .subscribe( 29 | res => { 30 | this.service.refreshList(); 31 | this.toastr.error("Deleted successfully", 'Payment Detail Register'); 32 | }, 33 | err => { console.log(err) } 34 | ) 35 | } 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /PaymentApp/src/app/shared/payment-detail.model.ts: -------------------------------------------------------------------------------- 1 | export class PaymentDetail { 2 | paymentDetailId: number=0; 3 | cardOwnerName: string=''; 4 | cardNumber: string=''; 5 | expirationDate: string=''; 6 | securityCode: string=''; 7 | } 8 | -------------------------------------------------------------------------------- /PaymentApp/src/app/shared/payment-detail.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@angular/core'; 2 | import { PaymentDetail } from './payment-detail.model'; 3 | import { HttpClient } from "@angular/common/http"; 4 | 5 | @Injectable({ 6 | providedIn: 'root' 7 | }) 8 | export class PaymentDetailService { 9 | 10 | constructor(private http: HttpClient) { } 11 | 12 | readonly baseURL = 'http://localhost:61236/api/PaymentDetail' 13 | formData: PaymentDetail = new PaymentDetail(); 14 | list: PaymentDetail[]; 15 | 16 | postPaymentDetail() { 17 | return this.http.post(this.baseURL, this.formData); 18 | } 19 | 20 | putPaymentDetail() { 21 | return this.http.put(`${this.baseURL}/${this.formData.paymentDetailId}`, this.formData); 22 | } 23 | 24 | deletePaymentDetail(id: number) { 25 | return this.http.delete(`${this.baseURL}/${id}`); 26 | } 27 | 28 | refreshList() { 29 | this.http.get(this.baseURL) 30 | .toPromise() 31 | .then(res =>this.list = res as PaymentDetail[]); 32 | } 33 | 34 | 35 | } 36 | -------------------------------------------------------------------------------- /PaymentApp/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentApp/src/assets/.gitkeep -------------------------------------------------------------------------------- /PaymentApp/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /PaymentApp/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 | }; 8 | 9 | /* 10 | * For easier debugging in development mode, you can import the following file 11 | * to ignore zone related error stack frames such as `zone.run`, `zoneDelegate.invokeTask`. 12 | * 13 | * This import should be commented out in production mode because it will have a negative impact 14 | * on performance if an error is thrown. 15 | */ 16 | // import 'zone.js/dist/zone-error'; // Included with Angular CLI. 17 | -------------------------------------------------------------------------------- /PaymentApp/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/Asp.Net-Core-5.0-Web-API-CRUD-with-Angular-11/356d23068956b2c76bd77c85fd89236344f0edc1/PaymentApp/src/favicon.ico -------------------------------------------------------------------------------- /PaymentApp/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PaymentApp 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /PaymentApp/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 | -------------------------------------------------------------------------------- /PaymentApp/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 | /** 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'; 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 | -------------------------------------------------------------------------------- /PaymentApp/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | .form-group label { 3 | color: grey; 4 | } 5 | 6 | .form-group input { 7 | font-weight: 500; 8 | } 9 | 10 | .form-group input::placeholder { 11 | color: #c0bdbd; 12 | font-weight: 300; 13 | } 14 | 15 | thead th{ 16 | font-weight: 400; 17 | } 18 | 19 | table tbody tr:hover { 20 | background-color: #fffbf2; 21 | cursor: pointer; 22 | } 23 | 24 | /*for invalid form controls*/ 25 | input.invalid { 26 | border-color: red; 27 | } -------------------------------------------------------------------------------- /PaymentApp/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: { 11 | context(path: string, deep?: boolean, filter?: RegExp): { 12 | keys(): string[]; 13 | (id: string): T; 14 | }; 15 | }; 16 | 17 | // First, initialize the Angular testing environment. 18 | getTestBed().initTestEnvironment( 19 | BrowserDynamicTestingModule, 20 | platformBrowserDynamicTesting() 21 | ); 22 | // Then we find all the tests. 23 | const context = require.context('./', true, /\.spec\.ts$/); 24 | // And load the modules. 25 | context.keys().map(context); 26 | -------------------------------------------------------------------------------- /PaymentApp/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "extends": "./tsconfig.json", 4 | "compilerOptions": { 5 | "outDir": "./out-tsc/app", 6 | "types": [] 7 | }, 8 | "files": [ 9 | "src/main.ts", 10 | "src/polyfills.ts" 11 | ], 12 | "include": [ 13 | "src/**/*.d.ts" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /PaymentApp/tsconfig.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "compileOnSave": false, 4 | "compilerOptions": { 5 | "baseUrl": "./", 6 | "outDir": "./dist/out-tsc", 7 | "forceConsistentCasingInFileNames": true, 8 | "strict": true, 9 | "noImplicitReturns": true, 10 | "noFallthroughCasesInSwitch": true, 11 | "sourceMap": true, 12 | "declaration": false, 13 | "downlevelIteration": true, 14 | "experimentalDecorators": true, 15 | "moduleResolution": "node", 16 | "importHelpers": true, 17 | "strictPropertyInitialization": false, 18 | "target": "es2015", 19 | "module": "es2020", 20 | "lib": [ 21 | "es2018", 22 | "dom" 23 | ] 24 | }, 25 | "angularCompilerOptions": { 26 | "strictInjectionParameters": true, 27 | "strictInputAccessModifiers": true, 28 | "strictTemplates": true 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /PaymentApp/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | /* To learn more about this file see: https://angular.io/config/tsconfig. */ 2 | { 3 | "extends": "./tsconfig.json", 4 | "compilerOptions": { 5 | "outDir": "./out-tsc/spec", 6 | "types": [ 7 | "jasmine" 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 | -------------------------------------------------------------------------------- /PaymentApp/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint:recommended", 3 | "rulesDirectory": [ 4 | "codelyzer" 5 | ], 6 | "rules": { 7 | "align": { 8 | "options": [ 9 | "parameters", 10 | "statements" 11 | ] 12 | }, 13 | "array-type": false, 14 | "arrow-return-shorthand": true, 15 | "curly": true, 16 | "deprecation": { 17 | "severity": "warning" 18 | }, 19 | "eofline": true, 20 | "import-blacklist": [ 21 | true, 22 | "rxjs/Rx" 23 | ], 24 | "import-spacing": true, 25 | "indent": { 26 | "options": [ 27 | "spaces" 28 | ] 29 | }, 30 | "max-classes-per-file": false, 31 | "max-line-length": [ 32 | true, 33 | 140 34 | ], 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-console": [ 47 | true, 48 | "debug", 49 | "info", 50 | "time", 51 | "timeEnd", 52 | "trace" 53 | ], 54 | "no-empty": false, 55 | "no-inferrable-types": [ 56 | true, 57 | "ignore-params" 58 | ], 59 | "no-non-null-assertion": true, 60 | "no-redundant-jsdoc": true, 61 | "no-switch-case-fall-through": true, 62 | "no-var-requires": false, 63 | "object-literal-key-quotes": [ 64 | true, 65 | "as-needed" 66 | ], 67 | "quotemark": [ 68 | true, 69 | "single" 70 | ], 71 | "semicolon": { 72 | "options": [ 73 | "always" 74 | ] 75 | }, 76 | "space-before-function-paren": { 77 | "options": { 78 | "anonymous": "never", 79 | "asyncArrow": "always", 80 | "constructor": "never", 81 | "method": "never", 82 | "named": "never" 83 | } 84 | }, 85 | "typedef": [ 86 | true, 87 | "call-signature" 88 | ], 89 | "typedef-whitespace": { 90 | "options": [ 91 | { 92 | "call-signature": "nospace", 93 | "index-signature": "nospace", 94 | "parameter": "nospace", 95 | "property-declaration": "nospace", 96 | "variable-declaration": "nospace" 97 | }, 98 | { 99 | "call-signature": "onespace", 100 | "index-signature": "onespace", 101 | "parameter": "onespace", 102 | "property-declaration": "onespace", 103 | "variable-declaration": "onespace" 104 | } 105 | ] 106 | }, 107 | "variable-name": { 108 | "options": [ 109 | "ban-keywords", 110 | "check-format", 111 | "allow-pascal-case" 112 | ] 113 | }, 114 | "whitespace": { 115 | "options": [ 116 | "check-branch", 117 | "check-decl", 118 | "check-operator", 119 | "check-separator", 120 | "check-type", 121 | "check-typecast" 122 | ] 123 | }, 124 | "component-class-suffix": true, 125 | "contextual-lifecycle": true, 126 | "directive-class-suffix": true, 127 | "no-conflicting-lifecycle": true, 128 | "no-host-metadata-property": true, 129 | "no-input-rename": true, 130 | "no-inputs-metadata-property": true, 131 | "no-output-native": true, 132 | "no-output-on-prefix": true, 133 | "no-output-rename": true, 134 | "no-outputs-metadata-property": true, 135 | "template-banana-in-box": true, 136 | "template-no-negated-async": true, 137 | "use-lifecycle-interface": true, 138 | "use-pipe-transform-interface": true, 139 | "directive-selector": [ 140 | true, 141 | "attribute", 142 | "app", 143 | "camelCase" 144 | ], 145 | "component-selector": [ 146 | true, 147 | "element", 148 | "app", 149 | "kebab-case" 150 | ] 151 | } 152 | } 153 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Asp.Net Core 5.0 Web API CRUD with Angular 11 2 | With this project we've implemented Asp.Net Core Web API CRUD Operations with Angular 11. 3 | 4 | Points discussed : 5 | _____________________ 6 | - Introduction 7 | - Why .Net 5 not .Net Core 4.0 8 | - Create Asp.Net Core Web API 9 | - Define EF Model & DB Context Class 10 | - DB Migration 11 | - Create API Controller with CRUD Web Methods 12 | - How Dependency Injection works in ASP.NET Core? 13 | - Test CRUD Operations in ASP.NET Core 14 | - Create Angular Project 15 | - Structure of the App 16 | - Form Design in Angular 17 | - Form Validation 18 | - Form Submit in Angular 19 | - Enable CORS in ASP.NET Core Web API 20 | - Form Reset Operation 21 | - Show notification in Angular 22 | - Retrieve & Display records from Web API with Angular 23 | - Update Operation 24 | - Delete Operation 25 | 26 | ## How it works ? 27 | 28 | :scroll: Article updated with Angular 11 29 | Url : http://bit.ly/2WezUhy 30 | 31 | :tv: Video tutorial on this same topic 32 | Url : https://youtu.be/S5dzfuh3t8U 33 | 34 | Video Tutorial for Asp.Net Core 5.0 Web API and Angular 11 CRUD 37 | 38 | 39 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us | 40 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------| 41 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW | 42 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE | 43 | | React |http://bit.ly/325temF | | 44 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us | 45 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com | 46 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection | 47 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection | 48 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection | 49 | | MEAN Stack |https://goo.gl/YJPPAH | | 50 | | C# Tutorial |https://goo.gl/s1zJxo | | 51 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | | 52 | | C# WinForm |https://goo.gl/vHS9Hd | | 53 | | MS SQL |https://goo.gl/MLYS9e | | 54 | | Crystal Report |https://goo.gl/5Vou7t | | 55 | | CG Exercises in C Program |https://goo.gl/qEWJCs | | 56 | 57 | --------------------------------------------------------------------------------