public EmployeeInfoPage() { this.InitializeComponent(); GraphBLL graph = new GraphBLL(); this.ProductsGrid.ItemsSource = graph.GetAllEmployeeInfo(); }
public LoginPage() { this.InitializeComponent(); this.GraphBLL = new GraphBLL(); this.LoginBLL = new LoginBLL(); //Displays to the screen all the admins you have registered this.UsersLabel.Text = $"You have total of {this.LoginBLL.GetUsersCount()} Admins."; }
public JobPage() { this.InitializeComponent(); graph = new GraphBLL(); this.ProductsGrid.ItemsSource = graph.GetEmployeeGraph(); // timer timer.Interval = new TimeSpan(0, 0, 1); timer.Tick += Timer_Tick; timer.Start(); }
/// <summary> /// Refreshes the grid of recently commed employees /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void BtnRefresh_Click(object sender, RoutedEventArgs e) { graph = new GraphBLL(); if (IsToday) { this.ProductsGrid.ItemsSource = graph.GetEmployeeGraph(); } else { this.ProductsGrid.ItemsSource = graph.GetEmployeeGraphMounght(); } }
/// <summary> /// Ticks in 2 seconds for Automatic Refresh checkbox /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Timer_Tick(object sender, object e) { if (AutomaticCheckOnn) { graph = new GraphBLL(); if (IsToday) { this.ProductsGrid.ItemsSource = graph.GetEmployeeGraph(); } else { this.ProductsGrid.ItemsSource = graph.GetEmployeeGraphMounght(); } } }
public EditPage() { this.InitializeComponent(); this.employeeBLL = new EmployeeBLL(); this.GraphBLL = new GraphBLL(); }
public RegisterPage() { this.InitializeComponent(); this.GraphBLL = new GraphBLL(); this.LoginBLL = new LoginBLL(); }
public CreatePage() { this.InitializeComponent(); employeeBLL = new EmployeeBLL(); this.GraphBLL = new GraphBLL(); }