using Biskilog_Accounting.Shared.Interfaces; namespace Biskilog_Accounting.Client.Pages.Dashboard { public partial class Dashboard { private readonly ITokenService m_tokenService; private double CurrentTradeSale = 7000; private double PreviousTradeSale = 2000.80; private string username { get; set; } public Dashboard() { } public Dashboard(ITokenService a_tokenService) => m_tokenService = a_tokenService; protected override void OnInitialized() { username = "username"; base.OnInitialized(); } } }