1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Data;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Input;
- using AutoServiceVika.Entites;
- namespace AutoServiceVika
- {
- /// <summary>
- /// Логика взаимодействия для App.xaml
- /// </summary>
- public partial class App : Application
- {
- public static AvtozapchastiyaEntities context { get; } = new AvtozapchastiyaEntities();
- public static Frame MainFrame { get; set; }
- public static Users CurrentUser = null;
- }
- }
|