Esempio n. 1
0
        public void TestMethod1()
        {
            var testConnect = new AttainmentEntities();


            Assert.IsNotNull(testConnect);
        }
Esempio n. 2
0
        public StudentsVM()
        {
            entities = new AttainmentEntities();
            entities.StudentsTBLs.Load();
            var collect = entities.StudentsTBLs.Local.ToBindingList();

            TypeAchievement = new ObservableCollection <StudentsTBL>(collect);
        }
Esempio n. 3
0
 public СlassificationVM()
 {
     entites = new AttainmentEntities();
     entites.TypeAchievementTBLs.Load();
     type = new List <TypeAchievementTBL>(entites.TypeAchievementTBLs.Local);
 }