Files
point_of_sale/PointOfSale/Pos.Ui/Pos/Setting/SettingWindow.xaml.cs
Bjarne Pedersen 41e23b6184 Initial commit
Initial commit til Git.
V2 er deployed
2026-06-13 17:31:50 +02:00

61 lines
1.8 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using Database.Repository;
using Pos.Category;
using Pos.Setting.ProductGroup;
namespace Pos.Setting
{
/// <summary>
/// Interaction logic for SettingWindow.xaml
/// </summary>
public partial class SettingWindow : Window
{
public SettingWindow()
{
InitializeComponent();
}
private void btnClerks_Click(object sender, RoutedEventArgs e)
{
EmployeeWindow employeeWindow = new EmployeeWindow();
employeeWindow.Show();
}
private void btnCategories_Click(object sender, RoutedEventArgs e)
{
ProductGroupWindow productGroupWindow = new ProductGroupWindow();
productGroupWindow.Show();
}
private void btnProductGroups_Click(object sender, RoutedEventArgs e)
{
ProductWindow productWindow = new ProductWindow();
//Check if there is any categories, if not close this window with a message.
ProductGroupRepository categoryRepository = new ProductGroupRepository();
bool anyExist = categoryRepository.Any();
if (!anyExist)
{
MessageBox.Show("Der er ingen kategorier, opret dem først", "Kategorier", MessageBoxButton.OK,
MessageBoxImage.Warning);
}
else
{
productWindow.Show();
}
}
}
}