예제 #1
0
        public IActionResult GetCathedra()
        {
            CathedraModel newModel = new CathedraModel();

            newModel.newList = cathedra.GetAll().ToList();
            return(View("~/Views/EducationalDepartment/Cathedra/Cathedra.cshtml", newModel));
        }
예제 #2
0
        protected override void AfterDataLoaded()
        {
            base.AfterDataLoaded();

            Faculties = DataSource as List<FacultyDTO>;

            CathedraDTO cathedra = originalEntity as CathedraDTO;

            if (cathedra.Exists())
            {
                cathedra.Faculty = (from faculty in faculties
                                    where faculty.ID == OriginalCathedra.FacultyID
                                    select faculty).FirstOrDefault();
            }

            Model = new CathedraModel(cathedra);
            Model.PropertyChanged += new System.ComponentModel.PropertyChangedEventHandler(ModelPropertyChanged);
        }