| | |
| | | InitializeComponent(); |
| | | } |
| | | |
| | | public event Func<Yw.Dto.AddSysCatalogInput, Task<bool>> ReloadDataEvent = null; |
| | | public event Func<Yw.Vmo.SysCatalog, Task<bool>> ReloadDataEvent = null; |
| | | |
| | | private AddSysCatalogInput _AddCatlogDto { get; set; } |
| | | private Yw.Vmo.SysCatalog _AddCatlogDto { get; set; } |
| | | |
| | | public async void SetBindingData(long TypeID) |
| | | { |
| | | _AddCatlogDto = new AddSysCatalogInput(); |
| | | _AddCatlogDto = new Yw.Vmo.SysCatalog(); |
| | | _AddCatlogDto.TypeID = TypeID; |
| | | } |
| | | |
| | | public async void SetBindingData(long TypeID, long CatLogID) |
| | | { |
| | | _AddCatlogDto = new AddSysCatalogInput(); |
| | | _AddCatlogDto = new Yw.Vmo.SysCatalog(); |
| | | _AddCatlogDto.TypeID = TypeID; |
| | | _AddCatlogDto.ParentID = CatLogID; |
| | | } |