コード例 #1
0
ファイル: Form2.cs プロジェクト: IvanSlizhyk/StudentProject
        private void DeleteSpeciality(object sender, EventArgs e)
        {
            var specialityService = new SpecialityService(_unit, _unit);

            specialityService.RemoveSpeciality((Speciality)specialityGV.CurrentRow.DataBoundItem);
            _unit.Commit();
            _unit = new UnitOfWork(_context);
            this.SearchSpeciality(13, _tBox_searchValue);
        }