We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2abfb31 commit 99d8a14Copy full SHA for 99d8a14
Controllers/CartController.cs
@@ -68,6 +68,7 @@ public async Task<ActionResult> Manage([FromForm] CartManageModel model)
68
var dbCart = new Cart
69
{
70
Id = cartId,
71
+ EquipmentType = EquipmentType.AvCart,
72
Configuration = new Cart.AvCartConfiguration
73
74
AuthToken = Guid.NewGuid().ToString(),
Models/Cart.cs
@@ -8,7 +8,6 @@ namespace fim_queueing_admin.Models;
8
public class Cart : BaseEquipment
9
10
public AvCartConfiguration? Configuration { get; set; } = new();
11
- public int EquipmentTypeId { get; set; } = 1;
12
13
// TODO: This is not yet implemented in Postgres
14
// public ICollection<AlertCart>? AlertCarts { get; set; }
0 commit comments