Renamed WgContext to AppDbContext
This commit is contained in:
@ -8,7 +8,7 @@ using WGneu.Models;
|
||||
|
||||
namespace WGneu.Windows {
|
||||
public partial class ContractListWindow : Window {
|
||||
private readonly WgContext Context = new();
|
||||
private readonly AppDbContext Context = new();
|
||||
|
||||
public ContractListWindow(Member member) {
|
||||
InitializeComponent();
|
||||
|
@ -12,7 +12,7 @@ using WGneu.Helpers;
|
||||
|
||||
namespace WGneu.Windows {
|
||||
public partial class MainWindow : Window {
|
||||
private readonly WgContext Context = new();
|
||||
private readonly AppDbContext Context = new();
|
||||
|
||||
public MainWindow() {
|
||||
InitializeComponent();
|
||||
|
@ -19,7 +19,7 @@ namespace WGneu.Windows {
|
||||
private readonly Dictionary<Control, bool> Valid = new();
|
||||
private readonly Dictionary<Control, object?> OriginalValues = new();
|
||||
private readonly RoutedCommand CtrlF = new();
|
||||
private readonly WgContext Context = new();
|
||||
private readonly AppDbContext Context = new();
|
||||
|
||||
public MemberListWindow() {
|
||||
InitializeComponent();
|
||||
|
Reference in New Issue
Block a user