duheng
2024-11-29 9c1af7f5ec91917b4276b25406c86386fd337fbb
WinFrmUI/PBS.WinFrmUI.WE.Core/WaterWE/01-catalogue/AddCatalogueDlg.cs
文件名从 WinFrmUI/PBS.WinFrmUI.WE.Core/新文件夹/01-catalogue/AddCatalogueDlg.cs 修改
@@ -1,6 +1,6 @@
锘縰sing Yw.WinFrmUI;
namespace HStation.WinFrmUI.WE
namespace PBS.WinFrmUI.WE
{
    public partial class AddCatalogueDlg : DevExpress.XtraEditors.XtraForm
    {
@@ -11,7 +11,7 @@
            this.Load += AddCatalogueDlg_Load;
        }
        public event Func<Vmo.WE.CatalogueVmo, object, Task<bool>> ReloadDataEvent = null;
        public event Func<PBS.Vmo.WE.CatalogueVmo, object, Task<bool>> ReloadDataEvent = null;
        private List<CatalogueViewModel> _CatalogueViews;
@@ -19,7 +19,7 @@
        private async void AddCatalogueDlg_Load(object sender, EventArgs e)
        {
            _CatalogueViews = new List<CatalogueViewModel>();
            var allList = await new BLL.WE.Catalogue().GetAll();
            var allList = await new PBS.BLL.WE.Catalogue().GetAll();
            if (allList != null)
            {
                foreach (var item in allList)
@@ -47,7 +47,7 @@
        {
            if (!Valid())
                return;
            var model = new Vmo.WE.CatalogueVmo();
            var model = new PBS.Vmo.WE.CatalogueVmo();
            model.Name = NameTextEdit.Text;
            model.TagName = TagNameTextEdit.Text;
            model.Description = DescriptionTextEdit.Text;