@page "/fetchssaorders"
@using Expose.MyIT.Shared.ViewModels
SSA Orders
SSA Orders
@if (_SsaOrders == 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
}