You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
429 B
18 lines
429 B
2 years ago
|
using Biskilog_Accounting.Shared.POSModels;
|
||
|
|
||
|
namespace Biskilog_Accounting.Client.Pages.Users
|
||
|
{
|
||
|
public partial class Users
|
||
|
{
|
||
|
private IEnumerable<Tbluser> m_users { get; set; } = Enumerable.Empty<Tbluser>();
|
||
|
|
||
|
protected override void OnInitialized()
|
||
|
{
|
||
|
m_users = m_userService.FetchUsers();
|
||
|
base.OnInitialized();
|
||
|
}
|
||
|
public void Dispose()
|
||
|
{ }
|
||
|
}
|
||
|
}
|