WinFormUI/IStation.WinFormUI.Project/project/EditProjectDlg.cs
@@ -35,7 +35,7 @@ /// </summary> public void SetBindingData(long projectId) { var rhs = new BLL.Project().QueryById(projectId); var rhs = new BLL.Project().GetById(projectId); _model = new Model.Project(rhs); this.NameTextEdit.EditValue = _model.Name; this.TagNameTextEdit.EditValue = _model.TagName; @@ -83,7 +83,7 @@ if (this.ReloadDataEvent != null) { var model = bll.QueryById(_model.Id); var model = bll.GetById(_model.Id); this.ReloadDataEvent.Invoke(model); } this.DialogResult = DialogResult.OK;