{
+ new ProductModel {Id = "0", Url = "some link", Name = "HDMI", Description = "super mega hdmi cabel", Rating = 3.8, ImagesUrls = new string[] {"link"}, WasOpened = false, WishlistId = "0"},
+ new ProductModel {Id = "1", Url = "some link", Name = "HDMI", Description = "super mega hdmi cabel", Rating = 3.8, ImagesUrls = new string[] {"link"}, WasOpened = false, WishlistId = "1"},
+ new ProductModel {Id = "2", Url = "some link", Name = "HDMI", Description = "super mega hdmi cabel", Rating = 3.8, ImagesUrls = new string[] {"link"}, WasOpened = false, WishlistId = "2"}
};
public void OnGet()
@@ -16,10 +18,4 @@ namespace ShoppingAssistantWebClient.Web.Pages
}
}
-
- public class Product {
- public string Description {get; set;}
- public double? Rating {get; set;}
- public double? Price {get; set;}
- }
}
diff --git a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml b/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml
index 1c5b778..a1f555a 100644
--- a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml
+++ b/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml
@@ -45,7 +45,7 @@
|
Chat name |
Type |
- Time |
+ CreatedById |
|
@@ -58,7 +58,7 @@
@Html.DisplayFor(modelItem => item.Name) |
@Html.DisplayFor(modelItem => item.Type) |
- @Html.DisplayFor(modelItem => item.Date) |
+ @Html.DisplayFor(modelItem => item.CreateById) |
diff --git a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml.cs b/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml.cs
index 4fa72c0..38fe688 100644
--- a/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml.cs
+++ b/ShoppingAssistantWebClient.Web/Pages/Wishlist.cshtml.cs
@@ -1,34 +1,28 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
+using ShoppingAssistantWebClient.Web.Models;
namespace ShoppingAssistantWebClient.Web.Pages
{
public class WishlistModel : PageModel
{
- public List wishlist = new List{
- new Wishlist {Id = 0, Name = "Chat1", Type="product", Date="21.09.2023"},
- new Wishlist {Id = 1, Name = "Chat2", Type="gift", Date="29.09.2023"},
- new Wishlist {Id = 2, Name = "Chat3", Type="product", Date="02.10.2023"}
+ public List wishlist = new List{
+ new Models.WishlistModel {Id = "0", Name = "Chat1", Type="product", CreateById="0"},
+ new Models.WishlistModel {Id = "1", Name = "Chat2", Type="gift", CreateById="1"},
+ new Models.WishlistModel {Id = "2", Name = "Chat3", Type="product", CreateById="2"}
};
public void OnGet()
{
}
- public void OnPostDelete(int id) {
+ public void OnPostDelete(string id) {
var item = wishlist.FirstOrDefault(wishlist => wishlist.Id == id);
- wishlist.RemoveAt(id);
+ wishlist.RemoveAt(Int32.Parse(id));
}
public IActionResult OnPostMoveToChat() {
return RedirectToPage("Index");
}
}
-
- public class Wishlist {
- public int Id {get; set;}
- public string Name {get; set;}
- public string Type {get; set;}
- public string Date {get; set;}
- }
}