GeneralData.cs 459 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Controls;
  7. using Ageev_Exam_Tour.Model;
  8. namespace Ageev_Exam_Tour
  9. {
  10. internal class GeneralData
  11. {
  12. // Created database connection
  13. public static Ageev_ExamEntities myDataBase = new Ageev_ExamEntities();
  14. // Connection for Frame
  15. public static Frame mainFrame = new Frame();
  16. }
  17. }