1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Controls;
- using Ageev_Exam_Tour.Model;
- namespace Ageev_Exam_Tour
- {
- internal class GeneralData
- {
- // Created database connection
- public static Ageev_ExamEntities myDataBase = new Ageev_ExamEntities();
- // Connection for Frame
- public static Frame mainFrame = new Frame();
- }
- }
|