@page "/fetchServiceShoporders"
@using Expose.MyIT.Shared.ViewModels
Service-Shop Orders
Service-Shop Orders
@if (_ServiceShopOrders == null)
{
}
else
{
Id
Name
Booking Names
Type
State
Item Number
Created Date
Decided Date
Recipient
Requestor
@context.Id
@context.Name
@string.Join(' ', context.BookingNames)
@context.Type
@context.State
@context.ItemNumber
@context.CreatedDate
@context.DecidedDate
@context.Recipient
@context.Requestor
}