2018-10-24 20:38:52 +02:00
|
|
|
|
using DataModels;
|
|
|
|
|
using System;
|
2018-10-24 19:22:37 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
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.Navigation;
|
|
|
|
|
using System.Windows.Shapes;
|
|
|
|
|
|
|
|
|
|
namespace DBconnection
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Logika interakcji dla klasy MainWindow.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class MainWindow : Window
|
|
|
|
|
{
|
|
|
|
|
public MainWindow()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
LINQconecctionDataContext baza = new LINQconecctionDataContext();
|
|
|
|
|
|
|
|
|
|
Roles role = new Roles();
|
|
|
|
|
|
2018-10-24 20:38:52 +02:00
|
|
|
|
Users user = new Users();
|
|
|
|
|
|
|
|
|
|
|
2018-12-10 20:01:44 +01:00
|
|
|
|
|
2018-10-24 19:22:37 +02:00
|
|
|
|
role.Name = "Szef wszystkich szefów";
|
|
|
|
|
|
|
|
|
|
baza.Roles.InsertOnSubmit(role);
|
|
|
|
|
|
|
|
|
|
baza.SubmitChanges();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-24 20:38:52 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-15 22:30:47 +01:00
|
|
|
|
private void Allusersbutton_Click(object sender, RoutedEventArgs e)
|
2018-10-24 20:38:52 +02:00
|
|
|
|
{
|
|
|
|
|
|
2018-10-24 19:22:37 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|