Projekte können nun erzeugt werden und geladen werden

This commit is contained in:
Husky
2018-07-14 20:23:22 +02:00
parent 54b637575c
commit 2be7e9857b
8 changed files with 326 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
using KlassenBIB;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SanSystem
{
public partial class FrmNewProjekt : Form
{
public FrmNewProjekt()
{
InitializeComponent();
}
private void btn_save_Click(object sender, EventArgs e)
{
Projekt projekt = new Projekt();
projekt.Nummer = txt_pro_nr.Text;
projekt.Ort = txt_ort.Text;
Global.Instance.SetProjekt(projekt);
//Global.Instance.ChangeProjekt(txt_pro_nr.Text);
}
}
}