Skip to content

Commit 8669cc2

Browse files
authored
fix: Remove erroneous Value from PropertyValue (#218)
1 parent c909ec7 commit 8669cc2

5 files changed

Lines changed: 2 additions & 6 deletions

File tree

Examples/BookingSystem.AspNetCore/Extensions/BookedOrderItemHelper.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ public static void AddPropertiesToBookedOrderItem(IOrderItemContext ctx, BookedO
3333
new PropertyValue()
3434
{
3535
Name = "Pin Code",
36-
Description = bookedOrderItemInfo.PinCode,
37-
Value = "defaultValue"
36+
Description = bookedOrderItemInfo.PinCode
3837
}
3938
};
4039
ctx.ResponseOrderItem.AccessPass = new List<ImageObject>

Examples/BookingSystem.AspNetCore/Feeds/OrdersFeed.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ protected override async Task<List<RpdeItem>> GetRPDEItems(string clientId, long
8686
{
8787
Name = "Pin Code",
8888
Description = orderItem.PinCode,
89-
Value = "defaultValue"
9089
}
9190
} : null,
9291
AccessPass = orderItem.BarCodeText != null ? new List<ImageObject>

Examples/BookingSystem.AspNetFramework/Extensions/BookedOrderItemHelper.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public static void AddPropertiesToBookedOrderItem(IOrderItemContext ctx, BookedO
3434
{
3535
Name = "Pin Code",
3636
Description = bookedOrderItemInfo.PinCode,
37-
Value = "defaultValue"
3837
}
3938
};
4039
ctx.ResponseOrderItem.AccessPass = new List<ImageObject>

Examples/BookingSystem.AspNetFramework/Feeds/OrdersFeed.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ protected override async Task<List<RpdeItem>> GetRPDEItems(string clientId, long
8686
{
8787
Name = "Pin Code",
8888
Description = orderItem.PinCode,
89-
Value = "defaultValue"
9089
}
9190
} : null,
9291
AccessPass = orderItem.BarCodeText != null ? new List<ImageObject>

Examples/BookingSystem.AspNetFramework/Stores/FacilityStore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.Collections.Generic;
33
using System.Linq;
44
using System.Threading.Tasks;

0 commit comments

Comments
 (0)