Lesson 30 - E-shop in ASP.NET Core MVC - Order List 2
In the previous lesson, E-shop in ASP.NET Core MVC - Order List, we prepared methods for order administration in the business layer. In today's ASP.NET Core tutorial, we're going to focus on the application layer, resulting in the order status changing working properly:
Let's start by preparing actions in the controller.
OrderController
As the new functionality will work with orders, we'll add new actions to
OrderController
.
Manage()
First, a simple method to display our new page. Its only task is to pass the
necessary data to the page being rendered, which will be done by the prepared
GetOrdersForManage()
method (To keep things simple, I suggest using
an EOrder
entity collection as the model for the new page. I'd be
probably a better choice to create a new viewmodel):
[HttpGet] public IActionResult Manage() { return View(orderManager.GetOrdersForManage()); }
GetOrderStates()
This method will be called by AJAX and will return a list of all possible
order states as Json
. We'll store them in a collection with
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
Before buying this article, you have to buy the previous one
This article is licensed: Premium no-reselling II, by buying this article, you agree with the terms of use.
Commercial article (licence no-reselling)
This article is based on many years of experience in the IT field, and describes how to develop a professional commercial product or parts, that can be directly used to generate profit or to get as a gate into the industry.
This knowledge is only for the members of our community who are working their way up to become IT professionals. Therefore, this knowledge is only available in exchange for credits. You can use the source code from this article for one commercial project. However, you will not be able to resell it. Simply put, you can't buy our article once and then sell our code multiple times. If you need to use this code a bit more extensively, we are ready to discuss Commercial licence options with you. You can find more info on this in the following article Licence.
Are you ready to become a professional? All you have to do is click here!.
Article description
Requested article covers this content:
We'll finish the administration page of completed orders of our ASP.NET Core MVC e-shop and prepare actions in the controller, create a view, JS, and AJAX.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.