You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
600 B
21 lines
600 B
using PEIS.Base;
|
|
using PEIS.Entity;
|
|
using PEIS.Event;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace PEIS.View.Setting
|
|
{
|
|
internal interface IDictionaryView : IViewBase
|
|
{
|
|
//字典分类
|
|
event EventHandler<Args<BaseDictionaryType>> GetBaseDictTypeData;
|
|
void ShowBaseDictTypeData(List<BaseDictionaryType> dictionaryTypes);
|
|
|
|
//字典明细
|
|
event EventHandler<Args<BaseDictionaryDetails>> GetBaseDictDetailsData;
|
|
void ShowBaseDictDetailsData(List<BaseDictionaryDetails> dictionaryTypes);
|
|
}
|
|
}
|
|
|