This commit is contained in:
MeysamMoghaddam
2025-10-07 22:10:00 +03:30
parent b9870b77b3
commit 644da40c1d
109 changed files with 46 additions and 0 deletions
@@ -0,0 +1,23 @@
@attribute [Route(RouteConstance.UserOrder + "{UserId:long}")]
@using BackOffice.BFF.UserOrder.Protobuf.Protos.UserOrder
@using BackOffice.Pages.UserOrder.Components
<MudStack>
<MudPaper Elevation="1" Class="pa-4">
<MudStack Row="true" Justify="Justify.SpaceBetween" AlignItems="AlignItems.Center">
<MudText>فاکتور</MudText>
</MudStack>
</MudPaper>
<BackOffice.Pages.UserOrder.Components.UserOrderDataTable UserId="UserId" @ref="_table" />
</MudStack>
@code {
[Parameter] public long UserId { get; set; }
private UserOrderDataTable _table;
}