App.xaml.cs 644 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Configuration;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Input;
  10. using AutoServiceVika.Entites;
  11. namespace AutoServiceVika
  12. {
  13. /// <summary>
  14. /// Логика взаимодействия для App.xaml
  15. /// </summary>
  16. public partial class App : Application
  17. {
  18. public static AvtozapchastiyaEntities context { get; } = new AvtozapchastiyaEntities();
  19. public static Frame MainFrame { get; set; }
  20. public static Users CurrentUser = null;
  21. }
  22. }