├── DBScript for Inserting Sample Rows to Customer and FoodItems.sql ├── README.md ├── RestaurantAPI ├── .vs │ └── RestaurantAPI │ │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ │ ├── config │ │ └── applicationhost.config │ │ └── v16 │ │ └── .suo ├── RestaurantAPI.sln └── RestaurantAPI │ ├── Controllers │ ├── CustomerController.cs │ ├── FoodItemController.cs │ ├── OrderController.cs │ └── WeatherForecastController.cs │ ├── Migrations │ ├── 20210203064142_Initial Create.Designer.cs │ ├── 20210203064142_Initial Create.cs │ └── RestaurantDbContextModelSnapshot.cs │ ├── Models │ ├── Customer.cs │ ├── FoodItem.cs │ ├── OrderDetail.cs │ ├── OrderMaster.cs │ └── RestaurantDbContext.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── RestaurantAPI.csproj │ ├── RestaurantAPI.csproj.user │ ├── 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.DependencyInjection.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 │ │ ├── RestaurantAPI.deps.json │ │ ├── RestaurantAPI.dll │ │ ├── RestaurantAPI.exe │ │ ├── RestaurantAPI.pdb │ │ ├── RestaurantAPI.runtimeconfig.dev.json │ │ ├── RestaurantAPI.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.Diagnostics.DiagnosticSource.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 │ │ └── RestaurantAPI.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 │ │ ├── RestaurantAPI.AssemblyInfo.cs │ │ ├── RestaurantAPI.AssemblyInfoInputs.cache │ │ ├── RestaurantAPI.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── RestaurantAPI.MvcApplicationPartsAssemblyInfo.cache │ │ ├── RestaurantAPI.MvcApplicationPartsAssemblyInfo.cs │ │ ├── RestaurantAPI.RazorTargetAssemblyInfo.cache │ │ ├── RestaurantAPI.assets.cache │ │ ├── RestaurantAPI.csproj.CopyComplete │ │ ├── RestaurantAPI.csproj.CoreCompileInputs.cache │ │ ├── RestaurantAPI.csproj.FileListAbsolute.txt │ │ ├── RestaurantAPI.csprojAssemblyReference.cache │ │ ├── RestaurantAPI.dll │ │ ├── RestaurantAPI.genruntimeconfig.cache │ │ ├── RestaurantAPI.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── RestaurantAPI.dll │ │ └── staticwebassets │ │ ├── RestaurantAPI.StaticWebAssets.Manifest.cache │ │ └── RestaurantAPI.StaticWebAssets.xml │ ├── RestaurantAPI.csproj.nuget.dgspec.json │ ├── RestaurantAPI.csproj.nuget.g.props │ ├── RestaurantAPI.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── restaurant-app ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.js ├── App.test.js ├── api └── index.js ├── app-structure.txt ├── components └── Order │ ├── OrderForm.js │ ├── OrderList.js │ ├── OrderedFoodItems.js │ ├── SearchFoodItems.js │ └── index.js ├── controls ├── Button.js ├── Input.js ├── Select.js └── index.js ├── hooks └── useForm.js ├── index.css ├── index.js ├── layouts ├── Form.js ├── Notification.js ├── Popup.js └── Table.js ├── logo.svg ├── reportWebVitals.js ├── setupTests.js └── utils └── index.js /DBScript for Inserting Sample Rows to Customer and FoodItems.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/DBScript for Inserting Sample Rows to Customer and FoodItems.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React js Master Detail CRUD with Asp.Net Web API 2 | 3 | React js Master Detail CRUD with Asp.Net Web API. 4 | 5 | 6 | Contents discussed : 7 | Asp.Net Web API 8 | - Project Creation 9 | - Define DB Model 10 | - Add Foreign Key in EF Core 11 | - DB Migration 12 | - Create API Controller with CRUD Web Methods 13 | - Make Post Req. / Insert an order 14 | - Retrieve/ Fetch Existing Records 15 | - Delete an Order 16 | 17 | React.js App. 18 | - Create React js App. & App Structure. 19 | - Install Material UI. 20 | - Design a Form for Master (Order Summary). 21 | - Populate Customer DropDown with the Collection from the API. 22 | - Make HTTP Request to Web API from React JS & Enable CORS. 23 | - Add Component to list and search all food items. 24 | - Select Food Items to the Order. 25 | - Create Component to List Select Food Items and managing them. 26 | - Calculate Order Grand Total. 27 | - Form Validation. 28 | - Create an Order or Submit an Order. 29 | - Retrieve and Display existing Order. 30 | - Update an entire Order. 31 | - Notification Component. 32 | - Delete an entire Order. 33 | 34 | 35 | ## How it works ? 36 | 37 | ##### Part 1 38 | 39 | Video Tutorial : https://youtu.be/i8LymADs_U4 40 | 41 | 44 | 45 | ##### Part 2 46 | Video Tutorial : https://youtu.be/z5NsNtrl4Og 47 | 48 | 51 | 52 | 53 | | :bar_chart: | List of Tutorials | | :moneybag: | Support Us | 54 | |--------------------------:|:---------------------|---|---------------------:|:-------------------------------------| 55 | | Angular |http://bit.ly/2KQN9xF | |Paypal | https://goo.gl/bPcyXW | 56 | | Asp.Net Core |http://bit.ly/30fPDMg | |Amazon Affiliate | https://geni.us/JDzpE | 57 | | React |http://bit.ly/325temF | | 58 | | Python |http://bit.ly/2ws4utg | | :point_right: | Follow Us | 59 | | Node.js |https://goo.gl/viJcFs | |Website |http://www.codaffection.com | 60 | | Asp.Net MVC |https://goo.gl/gvjUJ7 | |YouTube |https://www.youtube.com/codaffection | 61 | | Flutter |https://bit.ly/3ggmmJz| |Facebook |https://www.facebook.com/codaffection | 62 | | Web API |https://goo.gl/itVayJ | |Twitter |https://twitter.com/CodAffection | 63 | | MEAN Stack |https://goo.gl/YJPPAH | | 64 | | C# Tutorial |https://goo.gl/s1zJxo | | 65 | | Asp.Net WebForm |https://goo.gl/GXC2aJ | | 66 | | C# WinForm |https://goo.gl/vHS9Hd | | 67 | | MS SQL |https://goo.gl/MLYS9e | | 68 | | Crystal Report |https://goo.gl/5Vou7t | | 69 | | CG Exercises in C Program |https://goo.gl/qEWJCs | | 70 | -------------------------------------------------------------------------------- /RestaurantAPI/.vs/RestaurantAPI/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/.vs/RestaurantAPI/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /RestaurantAPI/.vs/RestaurantAPI/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/.vs/RestaurantAPI/v16/.suo -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI.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}") = "RestaurantAPI", "RestaurantAPI\RestaurantAPI.csproj", "{C65DDD77-86B8-458E-9CEA-6C65A83DCD1D}" 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 | {C65DDD77-86B8-458E-9CEA-6C65A83DCD1D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C65DDD77-86B8-458E-9CEA-6C65A83DCD1D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C65DDD77-86B8-458E-9CEA-6C65A83DCD1D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C65DDD77-86B8-458E-9CEA-6C65A83DCD1D}.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 = {39A92937-344C-4392-9F9F-76605F3D72E0} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Controllers/CustomerController.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 RestaurantAPI.Models; 9 | 10 | namespace RestaurantAPI.Controllers 11 | { 12 | [Route("api/[controller]")] 13 | [ApiController] 14 | public class CustomerController : ControllerBase 15 | { 16 | private readonly RestaurantDbContext _context; 17 | 18 | public CustomerController(RestaurantDbContext context) 19 | { 20 | _context = context; 21 | } 22 | 23 | // GET: api/Customer 24 | [HttpGet] 25 | public async Task>> GetCustomers() 26 | { 27 | return await _context.Customers.ToListAsync(); 28 | } 29 | 30 | 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Controllers/FoodItemController.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 RestaurantAPI.Models; 9 | 10 | namespace RestaurantAPI.Controllers 11 | { 12 | [Route("api/[controller]")] 13 | [ApiController] 14 | public class FoodItemController : ControllerBase 15 | { 16 | private readonly RestaurantDbContext _context; 17 | 18 | public FoodItemController(RestaurantDbContext context) 19 | { 20 | _context = context; 21 | } 22 | 23 | // GET: api/FoodItem 24 | [HttpGet] 25 | public async Task>> GetFoodItems() 26 | { 27 | return await _context.FoodItems.ToListAsync(); 28 | } 29 | 30 | 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Controllers/OrderController.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 RestaurantAPI.Models; 9 | 10 | namespace RestaurantAPI.Controllers 11 | { 12 | [Route("api/[controller]")] 13 | [ApiController] 14 | public class OrderController : ControllerBase 15 | { 16 | private readonly RestaurantDbContext _context; 17 | 18 | public OrderController(RestaurantDbContext context) 19 | { 20 | _context = context; 21 | } 22 | 23 | // GET: api/Order 24 | [HttpGet] 25 | public async Task>> GetOrderMasters() 26 | { 27 | return await _context.OrderMasters 28 | .Include(x => x.Customer) 29 | .ToListAsync(); 30 | } 31 | 32 | // GET: api/Order/5 33 | [HttpGet("{id}")] 34 | public async Task> GetOrderMaster(long id) 35 | { 36 | //get fooditem from order details 37 | var orderDetails = await (from master in _context.Set() 38 | join detail in _context.Set() 39 | on master.OrderMasterId equals detail.OrderMasterId 40 | join foodItem in _context.Set() 41 | on detail.FoodItemId equals foodItem.FoodItemId 42 | where master.OrderMasterId == id 43 | 44 | select new 45 | { 46 | master.OrderMasterId, 47 | detail.OrderDetailId, 48 | detail.FoodItemId, 49 | detail.Quantity, 50 | detail.FoodItemPrice, 51 | foodItem.FoodItemName 52 | }).ToListAsync(); 53 | 54 | // get order master 55 | var orderMaster = await (from a in _context.Set() 56 | where a.OrderMasterId == id 57 | 58 | select new 59 | { 60 | a.OrderMasterId, 61 | a.OrderNumber, 62 | a.CustomerId, 63 | a.PMethod, 64 | a.GTotal, 65 | deletedOrderItemIds = "", 66 | orderDetails = orderDetails 67 | }).FirstOrDefaultAsync(); 68 | 69 | if (orderMaster == null) 70 | { 71 | return NotFound(); 72 | } 73 | 74 | return Ok(orderMaster); 75 | } 76 | 77 | // PUT: api/Order/5 78 | // To protect from overposting attacks, see https://go.microsoft.com/fwlink/?linkid=2123754 79 | [HttpPut("{id}")] 80 | public async Task PutOrderMaster(long id, OrderMaster orderMaster) 81 | { 82 | if (id != orderMaster.OrderMasterId) 83 | { 84 | return BadRequest(); 85 | } 86 | 87 | _context.Entry(orderMaster).State = EntityState.Modified; 88 | 89 | //existing food items & newly added food items 90 | foreach (OrderDetail item in orderMaster.OrderDetails) 91 | { 92 | if (item.OrderDetailId == 0) 93 | _context.OrderDetails.Add(item); 94 | else 95 | _context.Entry(item).State = EntityState.Modified; 96 | } 97 | 98 | //deleted food items 99 | foreach (var i in orderMaster.DeletedOrderItemIds.Split(',').Where(x => x !="")) 100 | { 101 | OrderDetail y = _context.OrderDetails.Find(Convert.ToInt64(i)); 102 | _context.OrderDetails.Remove(y); 103 | } 104 | 105 | try 106 | { 107 | await _context.SaveChangesAsync(); 108 | } 109 | catch (DbUpdateConcurrencyException) 110 | { 111 | if (!OrderMasterExists(id)) 112 | { 113 | return NotFound(); 114 | } 115 | else 116 | { 117 | throw; 118 | } 119 | } 120 | 121 | return NoContent(); 122 | } 123 | 124 | // POST: api/Order 125 | // To protect from overposting attacks, see https://go.microsoft.com/fwlink/?linkid=2123754 126 | [HttpPost] 127 | public async Task> PostOrderMaster(OrderMaster orderMaster) 128 | { 129 | _context.OrderMasters.Add(orderMaster); 130 | await _context.SaveChangesAsync(); 131 | 132 | return CreatedAtAction("GetOrderMaster", new { id = orderMaster.OrderMasterId }, orderMaster); 133 | } 134 | 135 | // DELETE: api/Order/5 136 | [HttpDelete("{id}")] 137 | public async Task DeleteOrderMaster(long id) 138 | { 139 | var orderMaster = await _context.OrderMasters.FindAsync(id); 140 | if (orderMaster == null) 141 | { 142 | return NotFound(); 143 | } 144 | 145 | _context.OrderMasters.Remove(orderMaster); 146 | await _context.SaveChangesAsync(); 147 | 148 | return NoContent(); 149 | } 150 | 151 | private bool OrderMasterExists(long id) 152 | { 153 | return _context.OrderMasters.Any(e => e.OrderMasterId == id); 154 | } 155 | } 156 | } 157 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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 RestaurantAPI.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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Migrations/20210203064142_Initial Create.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 RestaurantAPI.Models; 8 | 9 | namespace RestaurantAPI.Migrations 10 | { 11 | [DbContext(typeof(RestaurantDbContext))] 12 | [Migration("20210203064142_Initial Create")] 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.2"); 22 | 23 | modelBuilder.Entity("RestaurantAPI.Models.Customer", b => 24 | { 25 | b.Property("CustomerID") 26 | .ValueGeneratedOnAdd() 27 | .HasColumnType("int") 28 | .UseIdentityColumn(); 29 | 30 | b.Property("CustomerName") 31 | .HasColumnType("nvarchar(100)"); 32 | 33 | b.HasKey("CustomerID"); 34 | 35 | b.ToTable("Customers"); 36 | }); 37 | 38 | modelBuilder.Entity("RestaurantAPI.Models.FoodItem", b => 39 | { 40 | b.Property("FoodItemId") 41 | .ValueGeneratedOnAdd() 42 | .HasColumnType("int") 43 | .UseIdentityColumn(); 44 | 45 | b.Property("FoodItemName") 46 | .HasColumnType("nvarchar(100)"); 47 | 48 | b.Property("Price") 49 | .HasColumnType("decimal(18,2)"); 50 | 51 | b.HasKey("FoodItemId"); 52 | 53 | b.ToTable("FoodItems"); 54 | }); 55 | 56 | modelBuilder.Entity("RestaurantAPI.Models.OrderDetail", b => 57 | { 58 | b.Property("OrderDetailId") 59 | .ValueGeneratedOnAdd() 60 | .HasColumnType("bigint") 61 | .UseIdentityColumn(); 62 | 63 | b.Property("FoodItemId") 64 | .HasColumnType("int"); 65 | 66 | b.Property("FoodItemPrice") 67 | .HasColumnType("decimal(18,2)"); 68 | 69 | b.Property("OrderMasterId") 70 | .HasColumnType("bigint"); 71 | 72 | b.Property("Quantity") 73 | .HasColumnType("int"); 74 | 75 | b.HasKey("OrderDetailId"); 76 | 77 | b.HasIndex("FoodItemId"); 78 | 79 | b.HasIndex("OrderMasterId"); 80 | 81 | b.ToTable("OrderDetails"); 82 | }); 83 | 84 | modelBuilder.Entity("RestaurantAPI.Models.OrderMaster", b => 85 | { 86 | b.Property("OrderMasterId") 87 | .ValueGeneratedOnAdd() 88 | .HasColumnType("bigint") 89 | .UseIdentityColumn(); 90 | 91 | b.Property("CustomerId") 92 | .HasColumnType("int"); 93 | 94 | b.Property("GTotal") 95 | .HasColumnType("decimal(18,2)"); 96 | 97 | b.Property("OrderNumber") 98 | .HasColumnType("nvarchar(75)"); 99 | 100 | b.Property("PMethod") 101 | .HasColumnType("nvarchar(10)"); 102 | 103 | b.HasKey("OrderMasterId"); 104 | 105 | b.HasIndex("CustomerId"); 106 | 107 | b.ToTable("OrderMasters"); 108 | }); 109 | 110 | modelBuilder.Entity("RestaurantAPI.Models.OrderDetail", b => 111 | { 112 | b.HasOne("RestaurantAPI.Models.FoodItem", "FoodItem") 113 | .WithMany() 114 | .HasForeignKey("FoodItemId") 115 | .OnDelete(DeleteBehavior.Cascade) 116 | .IsRequired(); 117 | 118 | b.HasOne("RestaurantAPI.Models.OrderMaster", null) 119 | .WithMany("OrderDetails") 120 | .HasForeignKey("OrderMasterId") 121 | .OnDelete(DeleteBehavior.Cascade) 122 | .IsRequired(); 123 | 124 | b.Navigation("FoodItem"); 125 | }); 126 | 127 | modelBuilder.Entity("RestaurantAPI.Models.OrderMaster", b => 128 | { 129 | b.HasOne("RestaurantAPI.Models.Customer", "Customer") 130 | .WithMany() 131 | .HasForeignKey("CustomerId") 132 | .OnDelete(DeleteBehavior.Cascade) 133 | .IsRequired(); 134 | 135 | b.Navigation("Customer"); 136 | }); 137 | 138 | modelBuilder.Entity("RestaurantAPI.Models.OrderMaster", b => 139 | { 140 | b.Navigation("OrderDetails"); 141 | }); 142 | #pragma warning restore 612, 618 143 | } 144 | } 145 | } 146 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Migrations/20210203064142_Initial Create.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.EntityFrameworkCore.Migrations; 2 | 3 | namespace RestaurantAPI.Migrations 4 | { 5 | public partial class InitialCreate : Migration 6 | { 7 | protected override void Up(MigrationBuilder migrationBuilder) 8 | { 9 | migrationBuilder.CreateTable( 10 | name: "Customers", 11 | columns: table => new 12 | { 13 | CustomerID = table.Column(type: "int", nullable: false) 14 | .Annotation("SqlServer:Identity", "1, 1"), 15 | CustomerName = table.Column(type: "nvarchar(100)", nullable: true) 16 | }, 17 | constraints: table => 18 | { 19 | table.PrimaryKey("PK_Customers", x => x.CustomerID); 20 | }); 21 | 22 | migrationBuilder.CreateTable( 23 | name: "FoodItems", 24 | columns: table => new 25 | { 26 | FoodItemId = table.Column(type: "int", nullable: false) 27 | .Annotation("SqlServer:Identity", "1, 1"), 28 | FoodItemName = table.Column(type: "nvarchar(100)", nullable: true), 29 | Price = table.Column(type: "decimal(18,2)", nullable: false) 30 | }, 31 | constraints: table => 32 | { 33 | table.PrimaryKey("PK_FoodItems", x => x.FoodItemId); 34 | }); 35 | 36 | migrationBuilder.CreateTable( 37 | name: "OrderMasters", 38 | columns: table => new 39 | { 40 | OrderMasterId = table.Column(type: "bigint", nullable: false) 41 | .Annotation("SqlServer:Identity", "1, 1"), 42 | OrderNumber = table.Column(type: "nvarchar(75)", nullable: true), 43 | CustomerId = table.Column(type: "int", nullable: false), 44 | PMethod = table.Column(type: "nvarchar(10)", nullable: true), 45 | GTotal = table.Column(type: "decimal(18,2)", nullable: false) 46 | }, 47 | constraints: table => 48 | { 49 | table.PrimaryKey("PK_OrderMasters", x => x.OrderMasterId); 50 | table.ForeignKey( 51 | name: "FK_OrderMasters_Customers_CustomerId", 52 | column: x => x.CustomerId, 53 | principalTable: "Customers", 54 | principalColumn: "CustomerID", 55 | onDelete: ReferentialAction.Cascade); 56 | }); 57 | 58 | migrationBuilder.CreateTable( 59 | name: "OrderDetails", 60 | columns: table => new 61 | { 62 | OrderDetailId = table.Column(type: "bigint", nullable: false) 63 | .Annotation("SqlServer:Identity", "1, 1"), 64 | OrderMasterId = table.Column(type: "bigint", nullable: false), 65 | FoodItemId = table.Column(type: "int", nullable: false), 66 | FoodItemPrice = table.Column(type: "decimal(18,2)", nullable: false), 67 | Quantity = table.Column(type: "int", nullable: false) 68 | }, 69 | constraints: table => 70 | { 71 | table.PrimaryKey("PK_OrderDetails", x => x.OrderDetailId); 72 | table.ForeignKey( 73 | name: "FK_OrderDetails_FoodItems_FoodItemId", 74 | column: x => x.FoodItemId, 75 | principalTable: "FoodItems", 76 | principalColumn: "FoodItemId", 77 | onDelete: ReferentialAction.Cascade); 78 | table.ForeignKey( 79 | name: "FK_OrderDetails_OrderMasters_OrderMasterId", 80 | column: x => x.OrderMasterId, 81 | principalTable: "OrderMasters", 82 | principalColumn: "OrderMasterId", 83 | onDelete: ReferentialAction.Cascade); 84 | }); 85 | 86 | migrationBuilder.CreateIndex( 87 | name: "IX_OrderDetails_FoodItemId", 88 | table: "OrderDetails", 89 | column: "FoodItemId"); 90 | 91 | migrationBuilder.CreateIndex( 92 | name: "IX_OrderDetails_OrderMasterId", 93 | table: "OrderDetails", 94 | column: "OrderMasterId"); 95 | 96 | migrationBuilder.CreateIndex( 97 | name: "IX_OrderMasters_CustomerId", 98 | table: "OrderMasters", 99 | column: "CustomerId"); 100 | } 101 | 102 | protected override void Down(MigrationBuilder migrationBuilder) 103 | { 104 | migrationBuilder.DropTable( 105 | name: "OrderDetails"); 106 | 107 | migrationBuilder.DropTable( 108 | name: "FoodItems"); 109 | 110 | migrationBuilder.DropTable( 111 | name: "OrderMasters"); 112 | 113 | migrationBuilder.DropTable( 114 | name: "Customers"); 115 | } 116 | } 117 | } 118 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Migrations/RestaurantDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- 1 | // 2 | using Microsoft.EntityFrameworkCore; 3 | using Microsoft.EntityFrameworkCore.Infrastructure; 4 | using Microsoft.EntityFrameworkCore.Metadata; 5 | using Microsoft.EntityFrameworkCore.Storage.ValueConversion; 6 | using RestaurantAPI.Models; 7 | 8 | namespace RestaurantAPI.Migrations 9 | { 10 | [DbContext(typeof(RestaurantDbContext))] 11 | partial class RestaurantDbContextModelSnapshot : 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.2"); 20 | 21 | modelBuilder.Entity("RestaurantAPI.Models.Customer", b => 22 | { 23 | b.Property("CustomerID") 24 | .ValueGeneratedOnAdd() 25 | .HasColumnType("int") 26 | .UseIdentityColumn(); 27 | 28 | b.Property("CustomerName") 29 | .HasColumnType("nvarchar(100)"); 30 | 31 | b.HasKey("CustomerID"); 32 | 33 | b.ToTable("Customers"); 34 | }); 35 | 36 | modelBuilder.Entity("RestaurantAPI.Models.FoodItem", b => 37 | { 38 | b.Property("FoodItemId") 39 | .ValueGeneratedOnAdd() 40 | .HasColumnType("int") 41 | .UseIdentityColumn(); 42 | 43 | b.Property("FoodItemName") 44 | .HasColumnType("nvarchar(100)"); 45 | 46 | b.Property("Price") 47 | .HasColumnType("decimal(18,2)"); 48 | 49 | b.HasKey("FoodItemId"); 50 | 51 | b.ToTable("FoodItems"); 52 | }); 53 | 54 | modelBuilder.Entity("RestaurantAPI.Models.OrderDetail", b => 55 | { 56 | b.Property("OrderDetailId") 57 | .ValueGeneratedOnAdd() 58 | .HasColumnType("bigint") 59 | .UseIdentityColumn(); 60 | 61 | b.Property("FoodItemId") 62 | .HasColumnType("int"); 63 | 64 | b.Property("FoodItemPrice") 65 | .HasColumnType("decimal(18,2)"); 66 | 67 | b.Property("OrderMasterId") 68 | .HasColumnType("bigint"); 69 | 70 | b.Property("Quantity") 71 | .HasColumnType("int"); 72 | 73 | b.HasKey("OrderDetailId"); 74 | 75 | b.HasIndex("FoodItemId"); 76 | 77 | b.HasIndex("OrderMasterId"); 78 | 79 | b.ToTable("OrderDetails"); 80 | }); 81 | 82 | modelBuilder.Entity("RestaurantAPI.Models.OrderMaster", b => 83 | { 84 | b.Property("OrderMasterId") 85 | .ValueGeneratedOnAdd() 86 | .HasColumnType("bigint") 87 | .UseIdentityColumn(); 88 | 89 | b.Property("CustomerId") 90 | .HasColumnType("int"); 91 | 92 | b.Property("GTotal") 93 | .HasColumnType("decimal(18,2)"); 94 | 95 | b.Property("OrderNumber") 96 | .HasColumnType("nvarchar(75)"); 97 | 98 | b.Property("PMethod") 99 | .HasColumnType("nvarchar(10)"); 100 | 101 | b.HasKey("OrderMasterId"); 102 | 103 | b.HasIndex("CustomerId"); 104 | 105 | b.ToTable("OrderMasters"); 106 | }); 107 | 108 | modelBuilder.Entity("RestaurantAPI.Models.OrderDetail", b => 109 | { 110 | b.HasOne("RestaurantAPI.Models.FoodItem", "FoodItem") 111 | .WithMany() 112 | .HasForeignKey("FoodItemId") 113 | .OnDelete(DeleteBehavior.Cascade) 114 | .IsRequired(); 115 | 116 | b.HasOne("RestaurantAPI.Models.OrderMaster", null) 117 | .WithMany("OrderDetails") 118 | .HasForeignKey("OrderMasterId") 119 | .OnDelete(DeleteBehavior.Cascade) 120 | .IsRequired(); 121 | 122 | b.Navigation("FoodItem"); 123 | }); 124 | 125 | modelBuilder.Entity("RestaurantAPI.Models.OrderMaster", b => 126 | { 127 | b.HasOne("RestaurantAPI.Models.Customer", "Customer") 128 | .WithMany() 129 | .HasForeignKey("CustomerId") 130 | .OnDelete(DeleteBehavior.Cascade) 131 | .IsRequired(); 132 | 133 | b.Navigation("Customer"); 134 | }); 135 | 136 | modelBuilder.Entity("RestaurantAPI.Models.OrderMaster", b => 137 | { 138 | b.Navigation("OrderDetails"); 139 | }); 140 | #pragma warning restore 612, 618 141 | } 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Models/Customer.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 RestaurantAPI.Models 9 | { 10 | public class Customer 11 | { 12 | [Key] 13 | public int CustomerID { get; set; } 14 | 15 | [Column(TypeName ="nvarchar(100)")] 16 | public string CustomerName { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Models/FoodItem.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 RestaurantAPI.Models 9 | { 10 | public class FoodItem 11 | { 12 | [Key] 13 | public int FoodItemId { get; set; } 14 | 15 | [Column(TypeName ="nvarchar(100)")] 16 | public string FoodItemName { get; set; } 17 | 18 | public decimal Price { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Models/OrderDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | 7 | namespace RestaurantAPI.Models 8 | { 9 | public class OrderDetail 10 | { 11 | [Key] 12 | public long OrderDetailId { get; set; } 13 | 14 | public long OrderMasterId { get; set; } 15 | 16 | public int FoodItemId { get; set; } 17 | public FoodItem FoodItem { get; set; } 18 | 19 | public decimal FoodItemPrice { get; set; } 20 | 21 | public int Quantity { get; set; } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Models/OrderMaster.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 RestaurantAPI.Models 9 | { 10 | public class OrderMaster 11 | { 12 | [Key] 13 | public long OrderMasterId { get; set; } 14 | 15 | [Column(TypeName = "nvarchar(75)")] 16 | public string OrderNumber { get; set; } 17 | 18 | public int CustomerId { get; set; } 19 | public Customer Customer { get; set; } 20 | 21 | [Column(TypeName = "nvarchar(10)")] 22 | public string PMethod { get; set; } 23 | 24 | public decimal GTotal { get; set; } 25 | 26 | public List OrderDetails { get; set; } 27 | 28 | [NotMapped] 29 | public string DeletedOrderItemIds { get; set; } 30 | 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/Models/RestaurantDbContext.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 RestaurantAPI.Models 8 | { 9 | public class RestaurantDbContext:DbContext 10 | { 11 | public RestaurantDbContext(DbContextOptions options):base(options) 12 | { 13 | 14 | } 15 | 16 | public DbSet Customers { get; set; } 17 | public DbSet FoodItems { get; set; } 18 | public DbSet OrderMasters { get; set; } 19 | public DbSet OrderDetails { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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 RestaurantAPI 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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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:53688", 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 | "RestaurantAPI": { 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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/RestaurantAPI.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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/RestaurantAPI.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ApiControllerWithContextScaffolder 5 | root/Common/Api 6 | 600 7 | True 8 | False 9 | True 10 | 11 | RestaurantAPI.Models.RestaurantDbContext 12 | False 13 | 14 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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 RestaurantAPI.Models; 11 | using System; 12 | using System.Collections.Generic; 13 | using System.Linq; 14 | using System.Threading.Tasks; 15 | 16 | namespace RestaurantAPI 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 = "RestaurantAPI", Version = "v1" }); 35 | }); 36 | 37 | services.AddDbContext(options => 38 | options.UseSqlServer(Configuration.GetConnectionString("DevConnection"))); 39 | 40 | } 41 | 42 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 43 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 44 | { 45 | 46 | app.UseCors(options => 47 | options.WithOrigins("http://localhost:3000") 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", "RestaurantAPI v1")); 56 | } 57 | 58 | app.UseRouting(); 59 | 60 | app.UseAuthorization(); 61 | 62 | app.UseEndpoints(endpoints => 63 | { 64 | endpoints.MapControllers(); 65 | }); 66 | } 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace RestaurantAPI 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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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=RestaurantDB;Trusted_Connection=True;MultipleActiveResultSets=True;" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Humanizer.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Data.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Data.Sqlite.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.DotNet.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.DotNet.PlatformAbstractions.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Sqlite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.Sqlite.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.exe -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.pdb -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.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 | } -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/RestaurantAPI.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 | } -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.batteries_v2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.batteries_v2.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.core.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.nativelibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.nativelibrary.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/SQLitePCLRaw.provider.dynamic_cdecl.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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=RestaurantDB;Trusted_Connection=True;MultipleActiveResultSets=True;" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ref/RestaurantAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ref/RestaurantAPI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/alpine-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-arm/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-arm/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-arm64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-armel/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-armel/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-mips64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-musl-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-x64/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-x64/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-x86/native/libe_sqlite3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/linux-x86/native/libe_sqlite3.so -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/osx-x64/native/libe_sqlite3.dylib -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm/native/e_sqlite3.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-arm64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x64/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x64/native/e_sqlite3.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x86/native/e_sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win-x86/native/e_sqlite3.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/bin/Debug/net5.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.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("RestaurantAPI")] 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("RestaurantAPI")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("RestaurantAPI")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 64cc075a097013546a4b6bd38193b08a1879f813 2 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.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 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | eb0ba3016ec4f78f48f2e4bb61aab5b9103fe3fb 2 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.assets.cache -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.csproj.CopyComplete -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 46c72e8ca80afeed7c2559e1d140c727afc7d754 2 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\appsettings.Development.json 2 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\appsettings.json 3 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\RestaurantAPI.exe 4 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\RestaurantAPI.deps.json 5 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\RestaurantAPI.runtimeconfig.json 6 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\RestaurantAPI.runtimeconfig.dev.json 7 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\RestaurantAPI.dll 8 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ref\RestaurantAPI.dll 9 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\RestaurantAPI.pdb 10 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Humanizer.dll 11 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll 12 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll 13 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.Data.SqlClient.dll 14 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.dll 15 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Abstractions.dll 16 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Design.dll 17 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Relational.dll 18 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.SqlServer.dll 19 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.Extensions.DependencyInjection.dll 20 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.Identity.Client.dll 21 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.IdentityModel.JsonWebTokens.dll 22 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Logging.dll 23 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.dll 24 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll 25 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.IdentityModel.Tokens.dll 26 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.OpenApi.dll 27 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll 28 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll 29 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll 30 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Configuration.ConfigurationManager.dll 31 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Diagnostics.DiagnosticSource.dll 32 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.IdentityModel.Tokens.Jwt.dll 33 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Runtime.Caching.dll 34 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Security.Cryptography.ProtectedData.dll 35 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll 36 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll 37 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll 38 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.pdb 39 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll 40 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.pdb 41 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll 42 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.pdb 43 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll 44 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.pdb 45 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll 46 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll 47 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.GeneratedMSBuildEditorConfig.editorconfig 48 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.AssemblyInfoInputs.cache 49 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.AssemblyInfo.cs 50 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.csproj.CoreCompileInputs.cache 51 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.MvcApplicationPartsAssemblyInfo.cs 52 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.MvcApplicationPartsAssemblyInfo.cache 53 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\staticwebassets\RestaurantAPI.StaticWebAssets.Manifest.cache 54 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\staticwebassets\RestaurantAPI.StaticWebAssets.xml 55 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\scopedcss\bundle\RestaurantAPI.styles.css 56 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.RazorTargetAssemblyInfo.cache 57 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.csproj.CopyComplete 58 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.dll 59 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\ref\RestaurantAPI.dll 60 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.pdb 61 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.genruntimeconfig.cache 62 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.Data.Sqlite.dll 63 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.DotNet.PlatformAbstractions.dll 64 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Sqlite.dll 65 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.Extensions.DependencyModel.dll 66 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\SQLitePCLRaw.batteries_v2.dll 67 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\SQLitePCLRaw.nativelibrary.dll 68 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\SQLitePCLRaw.core.dll 69 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\SQLitePCLRaw.provider.dynamic_cdecl.dll 70 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\alpine-x64\native\libe_sqlite3.so 71 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\linux-arm\native\libe_sqlite3.so 72 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\linux-arm64\native\libe_sqlite3.so 73 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\linux-armel\native\libe_sqlite3.so 74 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\linux-mips64\native\libe_sqlite3.so 75 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\linux-musl-x64\native\libe_sqlite3.so 76 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\linux-x64\native\libe_sqlite3.so 77 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\linux-x86\native\libe_sqlite3.so 78 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\osx-x64\native\libe_sqlite3.dylib 79 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm\native\e_sqlite3.dll 80 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm64\native\e_sqlite3.dll 81 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-x64\native\e_sqlite3.dll 82 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-x86\native\e_sqlite3.dll 83 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.AspNetCore.Razor.Language.dll 84 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.Bcl.AsyncInterfaces.dll 85 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll 86 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll 87 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll 88 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.Razor.dll 89 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.CodeAnalysis.Workspaces.dll 90 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.dll 91 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll 92 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll 93 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\dotnet-aspnet-codegenerator-design.dll 94 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll 95 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll 96 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll 97 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll 98 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\Newtonsoft.Json.dll 99 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Composition.AttributedModel.dll 100 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Composition.Convention.dll 101 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Composition.Hosting.dll 102 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Composition.Runtime.dll 103 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\System.Composition.TypedParts.dll 104 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll 105 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll 106 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll 107 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll 108 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll 109 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll 110 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll 111 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll 112 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll 113 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll 114 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll 115 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll 116 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll 117 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll 118 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll 119 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll 120 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll 121 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll 122 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll 123 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll 124 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll 125 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll 126 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll 127 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll 128 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll 129 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll 130 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 131 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 132 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 133 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 134 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 135 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 136 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 137 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 138 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 139 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 140 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 141 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 142 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll 143 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll 144 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll 145 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll 146 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll 147 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll 148 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll 149 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll 150 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll 151 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll 152 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll 153 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll 154 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll 155 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll 156 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm\lib\net5.0\dotnet-aspnet-codegenerator-design.exe 157 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\bin\Debug\net5.0\runtimes\win-arm64\lib\net5.0\dotnet-aspnet-codegenerator-design.exe 158 | C:\CodAffection Yt\React .Net API Master Detail App\Project\RestaurantAPI\RestaurantAPI\obj\Debug\net5.0\RestaurantAPI.csprojAssemblyReference.cache 159 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 6d8d6404f6b2d197a4914556b5fcfc52b193b2c5 2 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/RestaurantAPI.pdb -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/apphost.exe -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/ref/RestaurantAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/ref/RestaurantAPI.dll -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/staticwebassets/RestaurantAPI.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/staticwebassets/RestaurantAPI.StaticWebAssets.Manifest.cache -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/Debug/net5.0/staticwebassets/RestaurantAPI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/RestaurantAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\CodAffection Yt\\React .Net API Master Detail App\\Project\\RestaurantAPI\\RestaurantAPI\\RestaurantAPI.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\CodAffection Yt\\React .Net API Master Detail App\\Project\\RestaurantAPI\\RestaurantAPI\\RestaurantAPI.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\CodAffection Yt\\React .Net API Master Detail App\\Project\\RestaurantAPI\\RestaurantAPI\\RestaurantAPI.csproj", 11 | "projectName": "RestaurantAPI", 12 | "projectPath": "C:\\CodAffection Yt\\React .Net API Master Detail App\\Project\\RestaurantAPI\\RestaurantAPI\\RestaurantAPI.csproj", 13 | "packagesPath": "C:\\Users\\Shamseer\\.nuget\\packages\\", 14 | "outputPath": "C:\\CodAffection Yt\\React .Net API Master Detail App\\Project\\RestaurantAPI\\RestaurantAPI\\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.2, )" 63 | }, 64 | "Microsoft.EntityFrameworkCore.SqlServer": { 65 | "target": "Package", 66 | "version": "[5.0.2, )" 67 | }, 68 | "Microsoft.EntityFrameworkCore.Sqlite": { 69 | "target": "Package", 70 | "version": "[5.0.2, )" 71 | }, 72 | "Microsoft.EntityFrameworkCore.Tools": { 73 | "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", 74 | "suppressParent": "All", 75 | "target": "Package", 76 | "version": "[5.0.2, )" 77 | }, 78 | "Microsoft.VisualStudio.Web.CodeGeneration.Design": { 79 | "target": "Package", 80 | "version": "[5.0.2, )" 81 | }, 82 | "Swashbuckle.AspNetCore": { 83 | "target": "Package", 84 | "version": "[5.6.3, )" 85 | } 86 | }, 87 | "imports": [ 88 | "net461", 89 | "net462", 90 | "net47", 91 | "net471", 92 | "net472", 93 | "net48" 94 | ], 95 | "assetTargetFallback": true, 96 | "warn": true, 97 | "frameworkReferences": { 98 | "Microsoft.AspNetCore.App": { 99 | "privateAssets": "none" 100 | }, 101 | "Microsoft.NETCore.App": { 102 | "privateAssets": "all" 103 | } 104 | }, 105 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.100\\RuntimeIdentifierGraph.json" 106 | } 107 | } 108 | } 109 | } 110 | } -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/RestaurantAPI.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.2 27 | 28 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/RestaurantAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /RestaurantAPI/RestaurantAPI/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "bSwtqGUGiAIfz2fg2if86QsuyeduLfCYKZ75pJcYOobeFog/kTHZEO+uHD7OK5i9SpBTPBhZIIHAtDYTYnqJww==", 4 | "success": true, 5 | "projectFilePath": "C:\\CodAffection Yt\\React .Net API Master Detail App\\Project\\RestaurantAPI\\RestaurantAPI\\RestaurantAPI.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.1\\microsoft.bcl.asyncinterfaces.1.1.1.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.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512", 17 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512", 18 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.8.0\\microsoft.codeanalysis.csharp.workspaces.3.8.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.8.0\\microsoft.codeanalysis.workspaces.common.3.8.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.2\\microsoft.data.sqlite.core.5.0.2.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.2\\microsoft.entityframeworkcore.5.0.2.nupkg.sha512", 27 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.2\\microsoft.entityframeworkcore.abstractions.5.0.2.nupkg.sha512", 28 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.2\\microsoft.entityframeworkcore.analyzers.5.0.2.nupkg.sha512", 29 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.design\\5.0.2\\microsoft.entityframeworkcore.design.5.0.2.nupkg.sha512", 30 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.2\\microsoft.entityframeworkcore.relational.5.0.2.nupkg.sha512", 31 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\5.0.2\\microsoft.entityframeworkcore.sqlite.5.0.2.nupkg.sha512", 32 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\5.0.2\\microsoft.entityframeworkcore.sqlite.core.5.0.2.nupkg.sha512", 33 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\5.0.2\\microsoft.entityframeworkcore.sqlserver.5.0.2.nupkg.sha512", 34 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\5.0.2\\microsoft.entityframeworkcore.tools.5.0.2.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.1\\microsoft.extensions.dependencyinjection.5.0.1.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.2\\microsoft.visualstudio.web.codegeneration.5.0.2.nupkg.sha512", 56 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\5.0.2\\microsoft.visualstudio.web.codegeneration.contracts.5.0.2.nupkg.sha512", 57 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\5.0.2\\microsoft.visualstudio.web.codegeneration.core.5.0.2.nupkg.sha512", 58 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\5.0.2\\microsoft.visualstudio.web.codegeneration.design.5.0.2.nupkg.sha512", 59 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\5.0.2\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.2.nupkg.sha512", 60 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.2\\microsoft.visualstudio.web.codegeneration.templating.5.0.2.nupkg.sha512", 61 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.2\\microsoft.visualstudio.web.codegeneration.utils.5.0.2.nupkg.sha512", 62 | "C:\\Users\\Shamseer\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.2\\microsoft.visualstudio.web.codegenerators.mvc.5.0.2.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.1\\system.diagnostics.diagnosticsource.5.0.1.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:\\Users\\Shamseer\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.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.1\\system.runtime.compilerservices.unsafe.4.7.1.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.4\\system.threading.tasks.extensions.4.5.4.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 | } -------------------------------------------------------------------------------- /restaurant-app/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # production 12 | /build 13 | 14 | # misc 15 | .DS_Store 16 | .env.local 17 | .env.development.local 18 | .env.test.local 19 | .env.production.local 20 | 21 | npm-debug.log* 22 | yarn-debug.log* 23 | yarn-error.log* 24 | -------------------------------------------------------------------------------- /restaurant-app/README.md: -------------------------------------------------------------------------------- 1 | # Getting Started with Create React App 2 | 3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). 4 | 5 | ## Available Scripts 6 | 7 | In the project directory, you can run: 8 | 9 | ### `npm start` 10 | 11 | Runs the app in the development mode.\ 12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser. 13 | 14 | The page will reload if you make edits.\ 15 | You will also see any lint errors in the console. 16 | 17 | ### `npm test` 18 | 19 | Launches the test runner in the interactive watch mode.\ 20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. 21 | 22 | ### `npm run build` 23 | 24 | Builds the app for production to the `build` folder.\ 25 | It correctly bundles React in production mode and optimizes the build for the best performance. 26 | 27 | The build is minified and the filenames include the hashes.\ 28 | Your app is ready to be deployed! 29 | 30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. 31 | 32 | ### `npm run eject` 33 | 34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!** 35 | 36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. 37 | 38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. 39 | 40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. 41 | 42 | ## Learn More 43 | 44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). 45 | 46 | To learn React, check out the [React documentation](https://reactjs.org/). 47 | 48 | ### Code Splitting 49 | 50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) 51 | 52 | ### Analyzing the Bundle Size 53 | 54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) 55 | 56 | ### Making a Progressive Web App 57 | 58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) 59 | 60 | ### Advanced Configuration 61 | 62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) 63 | 64 | ### Deployment 65 | 66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) 67 | 68 | ### `npm run build` fails to minify 69 | 70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) 71 | -------------------------------------------------------------------------------- /restaurant-app/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "restaurant-app", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@material-ui/core": "^4.11.3", 7 | "@material-ui/icons": "^4.11.2", 8 | "@material-ui/lab": "^4.0.0-alpha.57", 9 | "@testing-library/jest-dom": "^5.11.9", 10 | "@testing-library/react": "^11.2.5", 11 | "@testing-library/user-event": "^12.7.0", 12 | "axios": "^0.21.1", 13 | "react": "^17.0.1", 14 | "react-dom": "^17.0.1", 15 | "react-scripts": "4.0.2", 16 | "web-vitals": "^1.1.0" 17 | }, 18 | "scripts": { 19 | "start": "react-scripts start", 20 | "build": "react-scripts build", 21 | "test": "react-scripts test", 22 | "eject": "react-scripts eject" 23 | }, 24 | "eslintConfig": { 25 | "extends": [ 26 | "react-app", 27 | "react-app/jest" 28 | ] 29 | }, 30 | "browserslist": { 31 | "production": [ 32 | ">0.2%", 33 | "not dead", 34 | "not op_mini all" 35 | ], 36 | "development": [ 37 | "last 1 chrome version", 38 | "last 1 firefox version", 39 | "last 1 safari version" 40 | ] 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /restaurant-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/restaurant-app/public/favicon.ico -------------------------------------------------------------------------------- /restaurant-app/public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 19 | 20 | 21 | 30 | React App 31 | 32 | 33 | You need to enable JavaScript to run this app. 34 | 35 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /restaurant-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/restaurant-app/public/logo192.png -------------------------------------------------------------------------------- /restaurant-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodAffection/React-js-Master-Detail-CRUD-with-Asp.Net-Web-API/385a55ce0c62b1bc5ce174c7731c648f7e7bd4b2/restaurant-app/public/logo512.png -------------------------------------------------------------------------------- /restaurant-app/public/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "React App", 3 | "name": "Create React App Sample", 4 | "icons": [ 5 | { 6 | "src": "favicon.ico", 7 | "sizes": "64x64 32x32 24x24 16x16", 8 | "type": "image/x-icon" 9 | }, 10 | { 11 | "src": "logo192.png", 12 | "type": "image/png", 13 | "sizes": "192x192" 14 | }, 15 | { 16 | "src": "logo512.png", 17 | "type": "image/png", 18 | "sizes": "512x512" 19 | } 20 | ], 21 | "start_url": ".", 22 | "display": "standalone", 23 | "theme_color": "#000000", 24 | "background_color": "#ffffff" 25 | } 26 | -------------------------------------------------------------------------------- /restaurant-app/public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /restaurant-app/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } 4 | 5 | .App-logo { 6 | height: 40vmin; 7 | pointer-events: none; 8 | } 9 | 10 | @media (prefers-reduced-motion: no-preference) { 11 | .App-logo { 12 | animation: App-logo-spin infinite 20s linear; 13 | } 14 | } 15 | 16 | .App-header { 17 | background-color: #282c34; 18 | min-height: 100vh; 19 | display: flex; 20 | flex-direction: column; 21 | align-items: center; 22 | justify-content: center; 23 | font-size: calc(10px + 2vmin); 24 | color: white; 25 | } 26 | 27 | .App-link { 28 | color: #61dafb; 29 | } 30 | 31 | @keyframes App-logo-spin { 32 | from { 33 | transform: rotate(0deg); 34 | } 35 | to { 36 | transform: rotate(360deg); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /restaurant-app/src/App.js: -------------------------------------------------------------------------------- 1 | import logo from './logo.svg'; 2 | import './App.css'; 3 | import { Container, Typography } from "@material-ui/core"; 4 | import Order from "./components/Order"; 5 | 6 | function App() { 7 | return ( 8 | 9 | 13 | Restaurant App 14 | 15 | 16 | 17 | ); 18 | } 19 | 20 | export default App; 21 | -------------------------------------------------------------------------------- /restaurant-app/src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /restaurant-app/src/api/index.js: -------------------------------------------------------------------------------- 1 | import axios from "axios"; 2 | 3 | const BASE_URL = 'http://localhost:53688/api/'; 4 | 5 | export const ENDPIONTS = { 6 | CUSTOMER: 'Customer', 7 | FOODITEM: 'FoodItem', 8 | ORDER: 'Order' 9 | } 10 | 11 | export const createAPIEndpoint = endpoint => { 12 | 13 | let url = BASE_URL + endpoint + '/'; 14 | return { 15 | fetchAll: () => axios.get(url), 16 | fetchById: id => axios.get(url + id), 17 | create: newRecord => axios.post(url, newRecord), 18 | update: (id, updatedRecord) => axios.put(url + id, updatedRecord), 19 | delete: id => axios.delete(url + id) 20 | } 21 | } -------------------------------------------------------------------------------- /restaurant-app/src/app-structure.txt: -------------------------------------------------------------------------------- 1 | ● src 2 | | 3 | +---● components 4 | | | 5 | | +--● Order 6 | | | 7 | | |--index.js 8 | | |--OrderedFoodItems.js 9 | | |--OrderForm.js 10 | | |--OrderList.js 11 | | |--SearchFoodItems.js 12 | | 13 | +---● layouts (Form, Table, Popup, Notification) 14 | | 15 | +---● hooks (useForm) 16 | | 17 | +---● utils (index) 18 | | 19 | +---● controls (Input, Button, Select) 20 | -------------------------------------------------------------------------------- /restaurant-app/src/components/Order/OrderForm.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from 'react' 2 | import Form from "../../layouts/Form"; 3 | import { Grid, InputAdornment, makeStyles, ButtonGroup, Button as MuiButton } from '@material-ui/core'; 4 | import { Input, Select, Button } from "../../controls"; 5 | import ReplayIcon from '@material-ui/icons/Replay'; 6 | import RestaurantMenuIcon from '@material-ui/icons/RestaurantMenu'; 7 | import ReorderIcon from '@material-ui/icons/Reorder'; 8 | import { createAPIEndpoint, ENDPIONTS } from "../../api"; 9 | import { roundTo2DecimalPoint } from "../../utils"; 10 | import Popup from '../../layouts/Popup'; 11 | import OrderList from './OrderList'; 12 | import Notification from "../../layouts/Notification"; 13 | 14 | const pMethods = [ 15 | { id: 'none', title: 'Select' }, 16 | { id: 'Cash', title: 'Cash' }, 17 | { id: 'Card', title: 'Card' }, 18 | ] 19 | 20 | const useStyles = makeStyles(theme => ({ 21 | adornmentText: { 22 | '& .MuiTypography-root': { 23 | color: '#f3b33d', 24 | fontWeight: 'bolder', 25 | fontSize: '1.5em' 26 | } 27 | }, 28 | submitButtonGroup: { 29 | backgroundColor: '#f3b33d', 30 | color: '#000', 31 | margin: theme.spacing(1), 32 | '& .MuiButton-label': { 33 | textTransform: 'none' 34 | }, 35 | '&:hover': { 36 | backgroundColor: '#f3b33d', 37 | } 38 | } 39 | })) 40 | 41 | export default function OrderForm(props) { 42 | 43 | const { values, setValues, errors, setErrors, 44 | handleInputChange, resetFormControls } = props; 45 | const classes = useStyles(); 46 | 47 | const [customerList, setCustomerList] = useState([]); 48 | const [orderListVisibility, setOrderListVisibility] = useState(false); 49 | const [orderId, setOrderId] = useState(0); 50 | const [notify, setNotify] = useState({ isOpen: false }) 51 | 52 | useEffect(() => { 53 | createAPIEndpoint(ENDPIONTS.CUSTOMER).fetchAll() 54 | .then(res => { 55 | let customerList = res.data.map(item => ({ 56 | id: item.customerID, 57 | title: item.customerName 58 | })); 59 | customerList = [{ id: 0, title: 'Select' }].concat(customerList); 60 | setCustomerList(customerList); 61 | }) 62 | .catch(err => console.log(err)) 63 | }, []) 64 | 65 | 66 | useEffect(() => { 67 | let gTotal = values.orderDetails.reduce((tempTotal, item) => { 68 | return tempTotal + (item.quantity * item.foodItemPrice); 69 | }, 0); 70 | setValues({ 71 | ...values, 72 | gTotal: roundTo2DecimalPoint(gTotal) 73 | }) 74 | 75 | }, [JSON.stringify(values.orderDetails)]); 76 | 77 | useEffect(() => { 78 | if (orderId == 0) resetFormControls() 79 | else { 80 | createAPIEndpoint(ENDPIONTS.ORDER).fetchById(orderId) 81 | .then(res => { 82 | setValues(res.data); 83 | setErrors({}); 84 | }) 85 | .catch(err => console.log(err)) 86 | } 87 | }, [orderId]); 88 | 89 | const validateForm = () => { 90 | let temp = {}; 91 | temp.customerId = values.customerId != 0 ? "" : "This field is required."; 92 | temp.pMethod = values.pMethod != "none" ? "" : "This field is required."; 93 | temp.orderDetails = values.orderDetails.length != 0 ? "" : "This field is required."; 94 | setErrors({ ...temp }); 95 | return Object.values(temp).every(x => x === ""); 96 | } 97 | 98 | const resetForm = () => { 99 | resetFormControls(); 100 | setOrderId(0); 101 | } 102 | 103 | const submitOrder = e => { 104 | e.preventDefault(); 105 | if (validateForm()) { 106 | if (values.orderMasterId == 0) { 107 | createAPIEndpoint(ENDPIONTS.ORDER).create(values) 108 | .then(res => { 109 | resetFormControls(); 110 | setNotify({isOpen:true, message:'New order is created.'}); 111 | }) 112 | .catch(err => console.log(err)); 113 | } 114 | else { 115 | createAPIEndpoint(ENDPIONTS.ORDER).update(values.orderMasterId, values) 116 | .then(res => { 117 | setOrderId(0); 118 | setNotify({isOpen:true, message:'The order is updated.'}); 119 | }) 120 | .catch(err => console.log(err)); 121 | } 122 | } 123 | 124 | } 125 | 126 | const openListOfOrders = () => { 127 | setOrderListVisibility(true); 128 | } 129 | 130 | return ( 131 | <> 132 | 133 | 134 | 135 | # 144 | }} 145 | /> 146 | 154 | 155 | 156 | 164 | $ 173 | }} 174 | /> 175 | 176 | } 179 | type="submit">Submit 180 | } 184 | /> 185 | 186 | } 190 | >Orders 191 | 192 | 193 | 194 | 198 | 200 | 201 | 203 | > 204 | ) 205 | } 206 | -------------------------------------------------------------------------------- /restaurant-app/src/components/Order/OrderList.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from 'react' 2 | import { createAPIEndpoint, ENDPIONTS } from "../../api"; 3 | import Table from "../../layouts/Table"; 4 | import { TableHead, TableRow, TableCell, TableBody } from '@material-ui/core'; 5 | import DeleteOutlineTwoToneIcon from '@material-ui/icons/DeleteOutlineTwoTone'; 6 | 7 | export default function OrderList(props) { 8 | 9 | const { setOrderId, setOrderListVisibility, resetFormControls, setNotify } = props; 10 | 11 | const [orderList, setOrderList] = useState([]); 12 | 13 | useEffect(() => { 14 | createAPIEndpoint(ENDPIONTS.ORDER).fetchAll() 15 | .then(res => { 16 | setOrderList(res.data) 17 | }) 18 | .catch(err => console.log(err)) 19 | }, []) 20 | 21 | const showForUpdate = id => { 22 | setOrderId(id); 23 | setOrderListVisibility(false); 24 | } 25 | 26 | const deleteOrder = id => { 27 | if (window.confirm('Are you sure to delete this record?')) { 28 | createAPIEndpoint(ENDPIONTS.ORDER).delete(id) 29 | .then(res => { 30 | setOrderListVisibility(false); 31 | setOrderId(0); 32 | resetFormControls(); 33 | setNotify({ isOpen: true, message: 'Deleted successfully.' }); 34 | }) 35 | .catch(err => console.log(err)) 36 | } 37 | } 38 | 39 | return ( 40 | <> 41 | 42 | 43 | 44 | Order No. 45 | Customer 46 | Payed With 47 | Grand Total 48 | 49 | 50 | 51 | 52 | { 53 | orderList.map(item => ( 54 | 55 | showForUpdate(item.orderMasterId)}> 57 | {item.orderNumber} 58 | 59 | showForUpdate(item.orderMasterId)}> 61 | {item.customer.customerName} 62 | 63 | showForUpdate(item.orderMasterId)}> 65 | {item.pMethod} 66 | 67 | showForUpdate(item.orderMasterId)}> 69 | {item.gTotal} 70 | 71 | 72 | deleteOrder(item.orderMasterId)} /> 75 | 76 | 77 | 78 | )) 79 | } 80 | 81 | 82 | > 83 | ) 84 | } 85 | -------------------------------------------------------------------------------- /restaurant-app/src/components/Order/OrderedFoodItems.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { List, ListItemText, Paper, ListItem, ListItemSecondaryAction, IconButton, ButtonGroup, Button, makeStyles } from '@material-ui/core'; 3 | import DeleteTwoToneIcon from '@material-ui/icons/DeleteTwoTone'; 4 | import { roundTo2DecimalPoint } from "../../utils"; 5 | 6 | const useStyles = makeStyles(theme => ({ 7 | paperRoot: { 8 | margin: '15px 0px', 9 | '&:hover': { 10 | cursor: 'pointer' 11 | }, 12 | '&:hover $deleteButton': { 13 | display: 'block' 14 | } 15 | }, 16 | buttonGroup: { 17 | backgroundColor: '#E3E3E3', 18 | borderRadius: 8, 19 | '& .MuiButtonBase-root ': { 20 | border: 'none', 21 | minWidth: '25px', 22 | padding: '1px' 23 | }, 24 | '& button:nth-child(2)': { 25 | fontSize: '1.2em', 26 | color: '#000' 27 | } 28 | }, 29 | deleteButton: { 30 | display: 'none', 31 | '& .MuiButtonBase-root': { 32 | color: '#E81719' 33 | }, 34 | }, 35 | totalPerItem: { 36 | fontWeight: 'bolder', 37 | fontSize: '1.2em', 38 | margin: '0px 10px' 39 | } 40 | })) 41 | 42 | export default function OrderedFoodItems(props) { 43 | 44 | const { values, setValues } = props; 45 | const classes = useStyles(); 46 | 47 | let orderedFoodItems = values.orderDetails; 48 | 49 | const removeFoodItem = (index, id) => { 50 | debugger; 51 | let x = { ...values }; 52 | x.orderDetails = x.orderDetails.filter((_, i) => i != index); 53 | if (id != 0) 54 | x.deletedOrderItemIds += id + ','; 55 | setValues({ ...x }); 56 | } 57 | 58 | const updateQuantity = (idx, value) => { 59 | let x = { ...values }; 60 | let foodItem = x.orderDetails[idx]; 61 | if (foodItem.quantity + value > 0) { 62 | foodItem.quantity += value; 63 | setValues({ ...x }); 64 | } 65 | } 66 | 67 | return ( 68 | 69 | {orderedFoodItems.length == 0 ? 70 | 71 | 80 | 81 | : orderedFoodItems.map((item, idx) => ( 82 | 83 | 84 | 95 | 98 | updateQuantity(idx, -1)} 100 | >- 101 | {item.quantity} 104 | updateQuantity(idx, 1)} 106 | >+ 107 | 108 | 109 | {'$' + roundTo2DecimalPoint(item.quantity * item.foodItemPrice)} 110 | 111 | > 112 | } 113 | secondaryTypographyProps={{ 114 | component: 'div' 115 | }} 116 | /> 117 | 119 | removeFoodItem(idx, item.orderDetailId)} 122 | > 123 | 124 | 125 | 126 | 127 | 128 | )) 129 | } 130 | 131 | ) 132 | } 133 | -------------------------------------------------------------------------------- /restaurant-app/src/components/Order/SearchFoodItems.js: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect } from 'react' 2 | import { createAPIEndpoint, ENDPIONTS } from "../../api"; 3 | import { List, ListItem, ListItemText, Paper, InputBase, IconButton, makeStyles, ListItemSecondaryAction } from '@material-ui/core'; 4 | import SearchTwoToneIcon from '@material-ui/icons/SearchTwoTone'; 5 | import PlusOneIcon from '@material-ui/icons/PlusOne'; 6 | import ArrowForwardIosIcon from '@material-ui/icons/ArrowForwardIos'; 7 | 8 | const useStyles = makeStyles(theme => ({ 9 | searchPaper: { 10 | padding: '2px 4px', 11 | display: 'flex', 12 | alignItems: 'center', 13 | }, 14 | searchInput: { 15 | marginLeft: theme.spacing(1.5), 16 | flex: 1, 17 | }, 18 | listRoot: { 19 | marginTop: theme.spacing(1), 20 | maxHeight: 450, 21 | overflow: 'auto', 22 | '& li:hover': { 23 | cursor: 'pointer', 24 | backgroundColor: '#E3E3E3' 25 | }, 26 | '& li:hover .MuiButtonBase-root': { 27 | display: 'block', 28 | color: '#000', 29 | }, 30 | '& .MuiButtonBase-root': { 31 | display: 'none' 32 | }, 33 | '& .MuiButtonBase-root:hover': { 34 | backgroundColor: 'transparent' 35 | } 36 | } 37 | })) 38 | 39 | export default function SearchFoodItems(props) { 40 | 41 | const { values, setValues } = props; 42 | let orderedFoodItems = values.orderDetails; 43 | 44 | const [foodItems, setFoodItems] = useState([]); 45 | const [searchList, setSearchList] = useState([]); 46 | const [searchKey, setSearchKey] = useState(''); 47 | const classes = useStyles(); 48 | 49 | useEffect(() => { 50 | createAPIEndpoint(ENDPIONTS.FOODITEM).fetchAll() 51 | .then(res => { 52 | setFoodItems(res.data); 53 | setSearchList(res.data); 54 | }) 55 | .catch(err => console.log(err)) 56 | 57 | }, []) 58 | 59 | useEffect(() => { 60 | let x = [...foodItems]; 61 | x = x.filter(y => { 62 | return y.foodItemName.toLowerCase().includes(searchKey.toLocaleLowerCase()) 63 | && orderedFoodItems.every(item => item.foodItemId != y.foodItemId) 64 | }); 65 | setSearchList(x); 66 | }, [searchKey, orderedFoodItems]) 67 | 68 | const addFoodItem = foodItem => { 69 | let x = { 70 | orderMasterId: values.orderMasterId, 71 | orderDetailId: 0, 72 | foodItemId: foodItem.foodItemId, 73 | quantity: 1, 74 | foodItemPrice: foodItem.price, 75 | foodItemName: foodItem.foodItemName 76 | } 77 | setValues({ 78 | ...values, 79 | orderDetails: [...values.orderDetails, x] 80 | }) 81 | } 82 | 83 | return ( 84 | <> 85 | 86 | setSearchKey(e.target.value)} 90 | placeholder="Search food items" /> 91 | 92 | 93 | 94 | 95 | 96 | { 97 | searchList.map((item, idx) => ( 98 | addFoodItem(item)}> 101 | 104 | 105 | addFoodItem(item)}> 106 | 107 | 108 | 109 | 110 | 111 | )) 112 | } 113 | 114 | > 115 | ) 116 | } 117 | -------------------------------------------------------------------------------- /restaurant-app/src/components/Order/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import OrderForm from './OrderForm' 3 | import { useForm } from '../../hooks/useForm'; 4 | import { Grid } from '@material-ui/core'; 5 | import SearchFoodItems from './SearchFoodItems'; 6 | import OrderedFoodItems from './OrderedFoodItems'; 7 | 8 | 9 | const generateOrderNumber = () => Math.floor(100000 + Math.random() * 900000).toString(); 10 | 11 | const getFreshModelObject = () => ({ 12 | orderMasterId: 0, 13 | orderNumber: generateOrderNumber(), 14 | customerId: 0, 15 | pMethod: 'none', 16 | gTotal: 0, 17 | deletedOrderItemIds: '', 18 | orderDetails: [] 19 | }) 20 | 21 | 22 | export default function Order() { 23 | 24 | const { 25 | values, 26 | setValues, 27 | errors, 28 | setErrors, 29 | handleInputChange, 30 | resetFormControls 31 | } = useForm(getFreshModelObject); 32 | 33 | return ( 34 | 35 | 36 | 46 | 47 | 48 | 49 | 55 | 56 | 57 | 63 | 64 | 65 | ) 66 | } 67 | -------------------------------------------------------------------------------- /restaurant-app/src/controls/Button.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Button as MuiButton, makeStyles } from "@material-ui/core"; 3 | 4 | const useStyles = makeStyles(theme => ({ 5 | root: { 6 | margin: theme.spacing(1), 7 | '& .MuiButton-label': { 8 | textTransform: 'none' 9 | } 10 | } 11 | })) 12 | 13 | export default function Button(props) { 14 | 15 | const { children, color, variant, onClick, className, ...other } = props; 16 | const classes = useStyles(); 17 | 18 | return ( 19 | 25 | {children} 26 | 27 | ) 28 | } 29 | -------------------------------------------------------------------------------- /restaurant-app/src/controls/Input.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { TextField } from '@material-ui/core'; 3 | 4 | export default function Input(props) { 5 | 6 | const { name, label, value, variant, onChange, error = null, ...other } = props; 7 | return ( 8 | 17 | ) 18 | } 19 | -------------------------------------------------------------------------------- /restaurant-app/src/controls/Select.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { FormControl, InputLabel, Select as MuiSelect, MenuItem, FormHelperText } from '@material-ui/core'; 3 | 4 | export default function Select(props) { 5 | 6 | const { name, label, value, varient, onChange, options, error = null } = props; 7 | 8 | return ( 9 | 12 | {label} 13 | 18 | { 19 | options.map( 20 | item => ({item.title}) 21 | ) 22 | } 23 | 24 | {error && {error}} 25 | 26 | ) 27 | } 28 | -------------------------------------------------------------------------------- /restaurant-app/src/controls/index.js: -------------------------------------------------------------------------------- 1 | export { default as Button } from './Button' 2 | export { default as Input } from './Input' 3 | export { default as Select } from './Select' -------------------------------------------------------------------------------- /restaurant-app/src/hooks/useForm.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | 3 | export function useForm(getFreshModelObject) { 4 | 5 | const [values, setValues] = useState(getFreshModelObject()); 6 | const [errors, setErrors] = useState({}); 7 | 8 | const handleInputChange = e => { 9 | const { name, value } = e.target 10 | setValues({ 11 | ...values, 12 | [name]: value 13 | }) 14 | } 15 | 16 | const resetFormControls = () => { 17 | setValues(getFreshModelObject()); 18 | setErrors({}) 19 | } 20 | 21 | return { 22 | values, 23 | setValues, 24 | errors, 25 | setErrors, 26 | handleInputChange, 27 | resetFormControls 28 | } 29 | } 30 | 31 | -------------------------------------------------------------------------------- /restaurant-app/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: 'Roboto',-apple-system, BlinkMacSystemFont, 'Segoe UI', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | code { 11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 12 | monospace; 13 | } 14 | -------------------------------------------------------------------------------- /restaurant-app/src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom'; 3 | import './index.css'; 4 | import App from './App'; 5 | import reportWebVitals from './reportWebVitals'; 6 | 7 | ReactDOM.render( 8 | , 9 | document.getElementById('root') 10 | ); 11 | 12 | // If you want to start measuring performance in your app, pass a function 13 | // to log results (for example: reportWebVitals(console.log)) 14 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 15 | reportWebVitals(); 16 | -------------------------------------------------------------------------------- /restaurant-app/src/layouts/Form.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { makeStyles } from "@material-ui/core"; 3 | 4 | const useStyles = makeStyles(theme => ({ 5 | root: { 6 | '& .MuiFormControl-root': { 7 | width: '90%', 8 | margin: theme.spacing(1) 9 | } 10 | } 11 | })) 12 | 13 | export default function Form(props) { 14 | const classes = useStyles(); 15 | const { children, ...other } = props; 16 | 17 | 18 | return ( 19 | 20 | {children} 21 | 22 | ) 23 | } 24 | -------------------------------------------------------------------------------- /restaurant-app/src/layouts/Notification.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Snackbar, makeStyles } from '@material-ui/core'; 3 | import { Alert } from '@material-ui/lab'; 4 | 5 | const useStyles = makeStyles(theme => ({ 6 | root: { 7 | top: theme.spacing(9), 8 | '& .MuiAlert-root': { 9 | backgroundColor: '#f3b33d', 10 | color: '#000' 11 | }, 12 | '& .MuiAlert-icon': { 13 | color: '#000' 14 | } 15 | } 16 | })) 17 | 18 | export default function Notification(props) { 19 | 20 | const { notify, setNotify } = props; 21 | const classes = useStyles() 22 | 23 | const handleClose = (event, reason) => { 24 | if (reason === 'clickaway') { 25 | return; 26 | } 27 | setNotify({ 28 | ...notify, 29 | isOpen: false 30 | }) 31 | } 32 | 33 | return ( 34 | 40 | 42 | {notify.message} 43 | 44 | 45 | ) 46 | } -------------------------------------------------------------------------------- /restaurant-app/src/layouts/Popup.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Dialog, DialogTitle, DialogContent, makeStyles, Typography, IconButton } from '@material-ui/core'; 3 | import CloseIcon from '@material-ui/icons/Close'; 4 | 5 | const useStyles = makeStyles(theme => ({ 6 | dialogWrapper: { 7 | padding: theme.spacing(2), 8 | position: 'absolute', 9 | top: theme.spacing(5) 10 | }, 11 | dialogTitle: { 12 | paddingRight: '0px' 13 | } 14 | })) 15 | 16 | export default function Popup(props) { 17 | 18 | const { title, children, openPopup, setOpenPopup } = props; 19 | const classes = useStyles(); 20 | 21 | return ( 22 | 23 | 24 | 25 | 26 | {title} 27 | 28 | { setOpenPopup(false) }}> 30 | 31 | 32 | 33 | 34 | 35 | {children} 36 | 37 | 38 | ) 39 | } -------------------------------------------------------------------------------- /restaurant-app/src/layouts/Table.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { Table as MuiTable, makeStyles } from '@material-ui/core' 3 | 4 | const useStyles = makeStyles(() => ({ 5 | table: { 6 | '& tbody td': { 7 | fontWeight: '300', 8 | }, 9 | '& tbody tr:hover': { 10 | backgroundColor: '#fffbf2', 11 | cursor: 'pointer', 12 | }, 13 | '& .MuiTableCell-root': { 14 | border: 'none' 15 | } 16 | }, 17 | })); 18 | 19 | export default function Table(props) { 20 | 21 | const classes = useStyles(); 22 | 23 | return ( 24 | 25 | {props.children} 26 | 27 | ) 28 | } -------------------------------------------------------------------------------- /restaurant-app/src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /restaurant-app/src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /restaurant-app/src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /restaurant-app/src/utils/index.js: -------------------------------------------------------------------------------- 1 | export const roundTo2DecimalPoint = value => Math.round((value + Number.EPSILON) * 100) / 100; --------------------------------------------------------------------------------